Skip to content
This repository was archived by the owner on Oct 4, 2024. It is now read-only.

Default gas fix #850

Merged
merged 1 commit into from
Oct 10, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion commands/call.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module.exports = {
.option('gas', {
desc: 'Max amount of gas this call can use (in gas units)',
type: 'string',
default: DEFAULT_FUNCTION_CALL_GAS
default: DEFAULT_FUNCTION_CALL_GAS.toNumber(),
})
.option('deposit', {
desc: 'Number of tokens to attach (in NEAR) to a function call',
Expand Down