test: partial fix for wallet_bumpfee.py

this changes this particular test case to match upstream again now that
sendall was fixed
This commit is contained in:
Byron Hambly 2025-08-25 13:57:56 +02:00
parent 9421b64ad6
commit 0a5ba23e13
No known key found for this signature in database
GPG key ID: DE8F6EA20A661697

View file

@ -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()