Skip to content

Commit

Permalink
Fix Anvil chain id
Browse files Browse the repository at this point in the history
  • Loading branch information
miohtama committed Dec 3, 2024
1 parent 49f9b0b commit 19b836f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/lagoon/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def web3(anvil_base_fork) -> Web3:
web3 = create_multi_provider_web3(tenderly_fork_rpc)
else:
web3 = create_multi_provider_web3(anvil_base_fork.json_rpc_url)
assert web3.eth.chain_id == 8453
assert web3.eth.chain_id in (8453, 31337) # TODO: Difference in Anvil versions, something else?
return web3


Expand Down

0 comments on commit 19b836f

Please sign in to comment.