From 3ec550d1688cec59afeaa3dbde708f6ca99d0895 Mon Sep 17 00:00:00 2001 From: rkrux Date: Tue, 26 May 2026 16:28:31 +0530 Subject: [PATCH] wallet, test: remove -deprecatedrpc=bip125 from wallet_basic.py --- test/functional/wallet_basic.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/functional/wallet_basic.py b/test/functional/wallet_basic.py index 11f27ed7dbf..e2ec2cfab23 100755 --- a/test/functional/wallet_basic.py +++ b/test/functional/wallet_basic.py @@ -510,7 +510,7 @@ class WalletTest(BitcoinTestFramework): # Try with walletrejectlongchains # Double chain limit but require combining inputs, so we pass AttemptSelection self.stop_node(0) - extra_args = ["-deprecatedrpc=bip125", "-walletrejectlongchains", "-limitclustercount=" + str(2 * chainlimit), "-limitancestorcount=" + str(2*chainlimit)] + extra_args = ["-walletrejectlongchains", "-limitclustercount=" + str(2 * chainlimit), "-limitancestorcount=" + str(2*chainlimit)] self.start_node(0, extra_args=extra_args) # wait until the wallet has submitted all transactions to the mempool @@ -562,7 +562,7 @@ class WalletTest(BitcoinTestFramework): "amount": baz["amount"], "category": baz["category"], "vout": baz["vout"]} - expected_fields = frozenset({'amount', 'bip125-replaceable', 'confirmations', 'details', 'fee', + expected_fields = frozenset({'amount', 'confirmations', 'details', 'fee', 'hex', 'lastprocessedblock', 'time', 'timereceived', 'trusted', 'txid', 'wtxid', 'walletconflicts', 'mempoolconflicts'}) verbose_field = "decoded" expected_verbose_fields = expected_fields | {verbose_field}