diff options
author | Russell Yanofsky <russ@yanofsky.org> | 2017-05-24 16:15:26 -0400 |
---|---|---|
committer | Russell Yanofsky <russ@yanofsky.org> | 2017-05-24 16:15:26 -0400 |
commit | 1b6602fbe66c0205acd4a33b9183080ec500fc72 (patch) | |
tree | e6bf3a0beb38c7f4043484a73e5eacf8465db1d6 /test/functional | |
parent | 7e96ecf075e8633f83ed1e05052402fb6b4d6186 (diff) |
Fix bumpfee rpc "errors" return value
Diffstat (limited to 'test/functional')
-rwxr-xr-x | test/functional/bumpfee.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/bumpfee.py b/test/functional/bumpfee.py index 54fd7740c1..aaed420690 100755 --- a/test/functional/bumpfee.py +++ b/test/functional/bumpfee.py @@ -88,6 +88,7 @@ def test_simple_bumpfee_succeeds(rbf_node, peer_node, dest_address): sync_mempools((rbf_node, peer_node)) assert rbfid in rbf_node.getrawmempool() and rbfid in peer_node.getrawmempool() bumped_tx = rbf_node.bumpfee(rbfid) + assert_equal(bumped_tx["errors"], []) assert bumped_tx["fee"] - abs(rbftx["fee"]) > 0 # check that bumped_tx propogates, original tx was evicted and has a wallet conflict sync_mempools((rbf_node, peer_node)) |