Skip to content

Commit

Permalink
fix(cmd): devnet test failed because putting wrong params in the Hard…
Browse files Browse the repository at this point in the history
…hat tasks
  • Loading branch information
0x6e616d committed Oct 17, 2024
1 parent b9d14d6 commit 11a09ba
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions bedrock-devnet/devnet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 11a09ba

Please sign in to comment.