File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
web3/_utils/module_testing Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -2329,6 +2329,9 @@ async def test_async_eth_replace_transaction_underpriced(
2329
2329
async_w3 : "AsyncWeb3" ,
2330
2330
async_keyfile_account_address_dual_type : ChecksumAddress ,
2331
2331
) -> None :
2332
+ # Note: `underpriced transaction` error is only consistent with
2333
+ # ``txpool.nolocals`` flag as of Geth ``v1.15.4``.
2334
+ # https://github.com/ethereum/web3.py/pull/3636
2332
2335
txn_params : TxParams = {
2333
2336
"from" : async_keyfile_account_address_dual_type ,
2334
2337
"to" : async_keyfile_account_address_dual_type ,
@@ -3528,6 +3531,9 @@ def test_eth_replace_transaction(
3528
3531
def test_eth_replace_transaction_underpriced (
3529
3532
self , w3 : "Web3" , keyfile_account_address_dual_type : ChecksumAddress
3530
3533
) -> None :
3534
+ # Note: `underpriced transaction` error is only consistent with
3535
+ # ``txpool.nolocals`` flag as of Geth ``v1.15.4``.
3536
+ # https://github.com/ethereum/web3.py/pull/3636
3531
3537
txn_params : TxParams = {
3532
3538
"from" : keyfile_account_address_dual_type ,
3533
3539
"to" : keyfile_account_address_dual_type ,
You can’t perform that action at this time.
0 commit comments