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

Commit

Permalink
default gas fix (#850)
Browse files Browse the repository at this point in the history
  • Loading branch information
volovyks authored Oct 10, 2021
1 parent e7a2c8f commit b14d8d9
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit b14d8d9

Please sign in to comment.