From ec1a0a0a58e0400b4ff2ac1007ff75032719b1be Mon Sep 17 00:00:00 2001 From: Denis Fadeev Date: Fri, 6 Dec 2024 18:25:09 +0300 Subject: [PATCH] remove commented out code --- examples/swap/tasks/companionSwap.ts | 32 ---------------------------- 1 file changed, 32 deletions(-) diff --git a/examples/swap/tasks/companionSwap.ts b/examples/swap/tasks/companionSwap.ts index c0e1f5a9..011beb47 100644 --- a/examples/swap/tasks/companionSwap.ts +++ b/examples/swap/tasks/companionSwap.ts @@ -59,35 +59,3 @@ task("companion-swap", "Swap native gas tokens", main) .addParam("target", "ZRC-20 address of the token to swap for") .addParam("amount", "Amount of tokens to swap") .addParam("recipient", "Recipient address"); - -// .addOptionalParam( -// "txOptionsGasPrice", -// "The gas price for the transaction", -// 10000000000, -// types.int -// ) -// .addOptionalParam( -// "txOptionsGasLimit", -// "The gas limit for the transaction", -// 7000000, -// types.int -// ) -// .addFlag("callOnRevert", "Whether to call on revert") -// .addOptionalParam( -// "revertAddress", -// "Revert address", -// "0x0000000000000000000000000000000000000000" -// ) -// .addOptionalParam("revertMessage", "Revert message", "") -// .addParam( -// "receiver", -// "The address of the receiver contract on a connected chain" -// ) -// .addOptionalParam( -// "onRevertGasLimit", -// "The gas limit for the revert transaction", -// 7000000, -// types.int -// ) -// .addOptionalParam("erc20", "The address of the ERC20 token to deposit") -// .addParam("amount", "The amount of tokens to deposit");