Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
yihuang committed Mar 20, 2024
1 parent 077dda5 commit 6f9a5a9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/integration_tests/test_fee_history.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
eth_to_bech32,
send_transaction,
w3_wait_for_new_blocks,
w3_wait_for_block,

Check failure on line 16 in tests/integration_tests/test_fee_history.py

View workflow job for this annotation

GitHub Actions / Run flake8 on python integration tests

./tests/integration_tests/test_fee_history.py:16:1: I001 isort found an import in the wrong position
)

NEW_BASE_FEE = 100000000000
Expand Down Expand Up @@ -42,6 +43,8 @@ def cluster(request, custom_ethermint, geth):

def test_basic(cluster):
w3: Web3 = cluster.w3
# need at least 5 blocks
w3_wait_for_block(w3, 5)
call = w3.provider.make_request
tx = {"to": ADDRS["community"], "value": 10, "gasPrice": w3.eth.gas_price}
send_transaction(w3, tx)
Expand Down

0 comments on commit 6f9a5a9

Please sign in to comment.