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}