We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7f35cd commit 22681a7Copy full SHA for 22681a7
tests/integration/test_ethereum_tester.py
@@ -586,6 +586,12 @@ def test_eth_getBlockByNumber_finalized(
586
) -> None:
587
super().test_eth_getBlockByNumber_finalized(w3, empty_block)
588
589
+ def test_eth_get_balance_with_block_identifier(self, w3: "Web3") -> None:
590
+ # send some money to the coinbase account to ensure later balance > genesis
591
+ w3.eth.send_transaction({"to": w3.eth.coinbase, "value": 1, "gas": 21000})
592
+
593
+ super().test_eth_get_balance_with_block_identifier(w3)
594
595
596
class TestEthereumTesterNetModule(NetModuleTest):
597
pass
0 commit comments