From 3caf26bc784e03b090e71d785b3fab3eeb054ab6 Mon Sep 17 00:00:00 2001 From: Denis Fadeev Date: Fri, 8 Nov 2024 09:49:52 +0300 Subject: [PATCH] fix: remove tx option defaults (#193) --- packages/tasks/src/evmDepositAndCall.ts | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/packages/tasks/src/evmDepositAndCall.ts b/packages/tasks/src/evmDepositAndCall.ts index 5045bdc..02ccead 100644 --- a/packages/tasks/src/evmDepositAndCall.ts +++ b/packages/tasks/src/evmDepositAndCall.ts @@ -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",