From 841f13fb7c74ebb00795e53aaee0c44fe3fc55d8 Mon Sep 17 00:00:00 2001 From: 0x6e616d Date: Tue, 8 Oct 2024 14:11:57 +0700 Subject: [PATCH] fix(cmd): devnet test failed because putting wrong params in the Hardhat tasks --- bedrock-devnet/devnet/__init__.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/bedrock-devnet/devnet/__init__.py b/bedrock-devnet/devnet/__init__.py index 8d7d2641c..047a29a49 100644 --- a/bedrock-devnet/devnet/__init__.py +++ b/bedrock-devnet/devnet/__init__.py @@ -456,12 +456,10 @@ def devnet_test(paths): # And do not use devnet system addresses, to avoid breaking fee-estimation or nonce values. run_commands([ CommandPreset('erc20-test', - ['npx', 'hardhat', 'deposit-erc20', '--network', 'devnetL1', - '--l1-contracts-json-path', paths.addresses_json_path, '--signer-index', '14'], + ['npx', 'hardhat', 'deposit-erc20', '--network', 'devnetL1'], cwd=paths.sdk_dir, timeout=8*60), CommandPreset('eth-test', - ['npx', 'hardhat', 'deposit-eth', '--network', 'devnetL1', - '--l1-contracts-json-path', paths.addresses_json_path, '--signer-index', '15'], + ['npx', 'hardhat', 'deposit-eth', '--network', 'devnetL1'], cwd=paths.sdk_dir, timeout=8*60) ], max_workers=1)