Skip to content

Commit

Permalink
fix: remove tx option defaults (#193)
Browse files Browse the repository at this point in the history
  • Loading branch information
fadeev authored Nov 8, 2024
1 parent f0b0244 commit 3caf26b
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions packages/tasks/src/evmDepositAndCall.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,18 +51,8 @@ task("evm-deposit-and-call", "Deposit tokens", evmDepositAndCall)
"0x0000000000000000000000000000000000000000",
types.string
)
.addOptionalParam(
"gasPrice",
"The gas price for the transaction",
50000000000,
types.int
)
.addOptionalParam(
"gasLimit",
"The gas limit for the transaction",
7000000,
types.int
)
.addOptionalParam("gasPrice", "The gas price for the transaction")
.addOptionalParam("gasLimit", "The gas limit for the transaction")
.addOptionalParam(
"onRevertGasLimit",
"The gas limit for the revert transaction",
Expand Down

0 comments on commit 3caf26b

Please sign in to comment.