@@ -1692,6 +1692,7 @@ async def test_async_eth_get_transaction_receipt_mined(
1692
1692
assert isinstance (effective_gas_price , int )
1693
1693
assert effective_gas_price > 0
1694
1694
1695
+ @flaky_geth_dev_mining
1695
1696
@pytest .mark .asyncio
1696
1697
async def test_async_eth_get_transaction_receipt_unmined (
1697
1698
self ,
@@ -1757,6 +1758,7 @@ async def test_async_eth_wait_for_transaction_receipt_mined(
1757
1758
assert isinstance (effective_gas_price , int )
1758
1759
assert effective_gas_price > 0
1759
1760
1761
+ @flaky_geth_dev_mining
1760
1762
@pytest .mark .asyncio
1761
1763
async def test_async_eth_wait_for_transaction_receipt_unmined (
1762
1764
self ,
@@ -3596,7 +3598,6 @@ def test_eth_replace_transaction_gas_price_defaulting_strategy_lower(
3596
3598
self , w3 : "Web3" , keyfile_account_address : ChecksumAddress
3597
3599
) -> None :
3598
3600
gas_price = w3 .to_wei (2 , "gwei" )
3599
-
3600
3601
txn_params : TxParams = {
3601
3602
"from" : keyfile_account_address ,
3602
3603
"to" : keyfile_account_address ,
@@ -4360,6 +4361,7 @@ def test_eth_get_transaction_receipt_mined(
4360
4361
assert isinstance (effective_gas_price , int )
4361
4362
assert effective_gas_price > 0
4362
4363
4364
+ @flaky_geth_dev_mining
4363
4365
def test_eth_get_transaction_receipt_unmined (
4364
4366
self , w3 : "Web3" , keyfile_account_address_dual_type : ChecksumAddress
4365
4367
) -> None :
@@ -4417,6 +4419,7 @@ def test_eth_wait_for_transaction_receipt_mined(
4417
4419
assert isinstance (effective_gas_price , int )
4418
4420
assert effective_gas_price > 0
4419
4421
4422
+ @flaky_geth_dev_mining
4420
4423
def test_eth_wait_for_transaction_receipt_unmined (
4421
4424
self , w3 : "Web3" , keyfile_account_address_dual_type : ChecksumAddress
4422
4425
) -> None :
0 commit comments