Skip to content

Commit

Permalink
Fix missing argument
Browse files Browse the repository at this point in the history
  • Loading branch information
miohtama committed Nov 6, 2024
1 parent 5e4e8cb commit 6fa9b45
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions eth_defi/confirmation.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
import datetime
import logging
import time
from distutils.command.install import install
from typing import Collection, Dict, List, Set, TypeAlias, Union, cast

from typing import Collection, Dict, List, Set, Union, cast

from _decimal import Decimal
from eth_account.datastructures import SignedTransaction
Expand Down Expand Up @@ -559,7 +559,7 @@ def wait_and_broadcast_multiple_nodes(
if web3.eth.chain_id == 61:
assert confirmation_block_count == 0, "Ethereum Tester chain does not progress itself, so we cannot wait"

anviled = is_anvil()
anviled = is_anvil(web3)

if anviled:
inter_node_delay = datetime.timedelta(seconds=0.1)
Expand Down

0 comments on commit 6fa9b45

Please sign in to comment.