aboutsummaryrefslogtreecommitdiff
path: root/test/functional/wallet_bumpfee.py
diff options
context:
space:
mode:
authorGregory Sanders <gsanders87@gmail.com>2019-12-01 09:46:44 -0500
committerGregory Sanders <gsanders87@gmail.com>2019-12-01 20:54:16 -0500
commit02afb0c550dc8529918460c845d1da3adf236eed (patch)
tree37f8672127e60c7841c857d477598ecfe3f9d42e /test/functional/wallet_bumpfee.py
parent2ecb7e1556cd970b6dccb5f101a718602487df4b (diff)
downloadbitcoin-02afb0c550dc8529918460c845d1da3adf236eed.tar.xz
Fix origfee return for bumpfee with feerate arg
Diffstat (limited to 'test/functional/wallet_bumpfee.py')
-rwxr-xr-xtest/functional/wallet_bumpfee.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/functional/wallet_bumpfee.py b/test/functional/wallet_bumpfee.py
index 9d6aa36c35..0c08655833 100755
--- a/test/functional/wallet_bumpfee.py
+++ b/test/functional/wallet_bumpfee.py
@@ -101,7 +101,8 @@ def test_simple_bumpfee_succeeds(self, mode, rbf_node, peer_node, dest_address):
else:
bumped_tx = rbf_node.bumpfee(rbfid)
assert_equal(bumped_tx["errors"], [])
- assert bumped_tx["fee"] - abs(rbftx["fee"]) > 0
+ assert bumped_tx["fee"] > -rbftx["fee"]
+ assert_equal(bumped_tx["origfee"], -rbftx["fee"])
# check that bumped_tx propagates, original tx was evicted and has a wallet conflict
self.sync_mempools((rbf_node, peer_node))
assert bumped_tx["txid"] in rbf_node.getrawmempool()