@@ -272,18 +272,34 @@ def test_eth_getBlockByHash_pending(
272272 assert block ['hash' ] is not None
273273
274274 @disable_auto_mine
275+ @pytest .mark .xfail (reason = 'EIP 1559 is not implemented on eth-tester' )
275276 def test_eth_get_transaction_receipt_unmined (self , eth_tester , web3 , unlocked_account ):
276277 super ().test_eth_get_transaction_receipt_unmined (web3 , unlocked_account )
277278
278279 @disable_auto_mine
279- def test_eth_replaceTransaction_deprecated (self , eth_tester , web3 , unlocked_account ):
280- super ().test_eth_replaceTransaction_deprecated (web3 , unlocked_account )
280+ def test_eth_replace_transaction_legacy (self , eth_tester , web3 , unlocked_account ):
281+ super ().test_eth_replace_transaction_legacy (web3 , unlocked_account )
281282
282283 @disable_auto_mine
284+ @pytest .mark .xfail (reason = 'EIP 1559 is not implemented on eth-tester' )
283285 def test_eth_replace_transaction (self , eth_tester , web3 , unlocked_account ):
284286 super ().test_eth_replace_transaction (web3 , unlocked_account )
285287
288+ @pytest .mark .xfail (reason = 'EIP 1559 is not implemented on eth-tester' )
289+ def test_eth_replace_transaction_underpriced (self , web3 , emitter_contract_address ):
290+ super ().test_eth_replace_transaction_underpriced (web3 , emitter_contract_address )
291+
292+ @disable_auto_mine
293+ @pytest .mark .xfail (reason = 'EIP 1559 is not implemented on eth-tester' )
294+ def test_eth_replaceTransaction_deprecated (self , eth_tester , web3 , unlocked_account ):
295+ super ().test_eth_replaceTransaction_deprecated (web3 , unlocked_account )
296+
297+ @pytest .mark .xfail (reason = 'EIP 1559 is not implemented on eth-tester' )
298+ def test_eth_replace_transaction_already_mined (self , web3 , emitter_contract_address ):
299+ super ().test_eth_replace_transaction_already_mined (web3 , emitter_contract_address )
300+
286301 @disable_auto_mine
302+ @pytest .mark .xfail (reason = 'EIP 1559 is not implemented on eth-tester' )
287303 def test_eth_replace_transaction_incorrect_nonce (self , eth_tester , web3 , unlocked_account ):
288304 super ().test_eth_replace_transaction_incorrect_nonce (web3 , unlocked_account )
289305
@@ -429,24 +445,32 @@ def test_eth_estimate_gas_revert_without_msg(self, web3, revert_contract, unlock
429445 web3 .eth .estimate_gas (txn_params )
430446
431447 @pytest .mark .xfail (reason = 'EIP 1559 is not implemented on eth-tester' )
432- def test_1559_default_fees (self , web3 , emitter_contract_address ):
433- super ().test_1559_default_fees (web3 , emitter_contract_address )
448+ def test_eth_send_transaction (self , web3 , emitter_contract_address ):
449+ super ().test_eth_send_transaction (web3 , emitter_contract_address )
450+
451+ @pytest .mark .xfail (reason = 'EIP 1559 is not implemented on eth-tester' )
452+ def test_eth_sendTransaction_deprecated (self , web3 , emitter_contract_address ):
453+ super ().test_eth_sendTransaction_deprecated (web3 , emitter_contract_address )
454+
455+ @pytest .mark .xfail (reason = 'EIP 1559 is not implemented on eth-tester' )
456+ def test_eth_send_transaction_with_nonce (self , web3 , emitter_contract_address ):
457+ super ().test_eth_send_transaction_with_nonce (web3 , emitter_contract_address )
434458
435459 @pytest .mark .xfail (reason = 'EIP 1559 is not implemented on eth-tester' )
436- def test_1559_canonical (self , web3 , emitter_contract_address ):
437- super ().test_1559_canonical (web3 , emitter_contract_address )
460+ def test_eth_send_transaction_default_fees (self , web3 , emitter_contract_address ):
461+ super ().test_eth_send_transaction_default_fees (web3 , emitter_contract_address )
438462
439463 @pytest .mark .xfail (reason = 'EIP 1559 is not implemented on eth-tester' )
440- def test_1559_hex_fees (self , web3 , emitter_contract_address ):
441- super ().test_1559_hex_fees (web3 , emitter_contract_address )
464+ def test_eth_send_transaction_hex_fees (self , web3 , emitter_contract_address ):
465+ super ().test_eth_send_transaction_hex_fees (web3 , emitter_contract_address )
442466
443467 @pytest .mark .xfail (reason = 'EIP 1559 is not implemented on eth-tester' )
444- def test_1559_no_gas (self , web3 , emitter_contract_address ):
445- super ().test_1559_no_gas (web3 , emitter_contract_address )
468+ def test_eth_send_transaction_no_gas (self , web3 , emitter_contract_address ):
469+ super ().test_eth_send_transaction_no_gas (web3 , emitter_contract_address )
446470
447471 @pytest .mark .xfail (reason = 'EIP 1559 is not implemented on eth-tester' )
448- def test_1559_no_max_fee (self , web3 , emitter_contract_address ):
449- super ().test_1559_no_max_fee (web3 , emitter_contract_address )
472+ def test_eth_send_transaction_no_max_fee (self , web3 , emitter_contract_address ):
473+ super ().test_eth_send_transaction_no_max_fee (web3 , emitter_contract_address )
450474
451475
452476class TestEthereumTesterVersionModule (VersionModuleTest ):
0 commit comments