From 0a5ba23e1387f4ca9dbc4a575ec3e685afb0f151 Mon Sep 17 00:00:00 2001 From: Byron Hambly Date: Mon, 25 Aug 2025 13:57:56 +0200 Subject: [PATCH] test: partial fix for wallet_bumpfee.py this changes this particular test case to match upstream again now that sendall was fixed --- test/functional/wallet_bumpfee.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/functional/wallet_bumpfee.py b/test/functional/wallet_bumpfee.py index 2c7cfd8d54..5ed5f3f653 100755 --- a/test/functional/wallet_bumpfee.py +++ b/test/functional/wallet_bumpfee.py @@ -818,8 +818,7 @@ def test_no_more_inputs_fails(self, rbf_node, dest_address): self.generatetoaddress(rbf_node, 1, dest_address) # spend all funds, no change output rbfid = rbf_node.sendall(recipients=[rbf_node.getnewaddress()])['txid'] - assert_equal(rbf_node.getbalance()['bitcoin'], 0) # ELEMENTS - assert_raises_rpc_error(-4, "bumpfee can only be called on an unblinded transaction", rbf_node.bumpfee, rbfid) # ELEMENTS + assert_raises_rpc_error(-4, "Unable to create transaction. Insufficient funds", rbf_node.bumpfee, rbfid) self.clear_mempool()