Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Diagnosing Enso errors #249

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions tests/velvet/test_velvet_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ def anvil_base_fork(request, vault_owner, usdc_holder, deposit_user) -> AnvilLau
launch = fork_network_anvil(
JSON_RPC_BASE,
unlocked_addresses=[vault_owner, usdc_holder, deposit_user],
fork_block_number=23261311,
)
try:
yield launch
Expand Down Expand Up @@ -86,7 +85,10 @@ def web3(anvil_base_fork) -> Web3:
make_anvil_custom_rpc_request(web3, "evm_revert", [snapshot])
else:
# Anvil
web3 = create_multi_provider_web3(anvil_base_fork.json_rpc_url)
web3 = create_multi_provider_web3(
anvil_base_fork.json_rpc_url,
default_http_timeout=(3, 45),
)
assert web3.eth.chain_id == 8453
yield web3

Expand Down
Loading