Skip to content

Commit

Permalink
Merge pull request #286 from tokamak-network/fix/make-devnet-test-com…
Browse files Browse the repository at this point in the history
…mand

fix(cmd): devnet test failed because putting wrong params in the Hardhat tasks
  • Loading branch information
0x6e616d authored Oct 15, 2024
2 parents 3f236ee + 841f13f commit f3a1feb
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 f3a1feb

Please sign in to comment.