aboutsummaryrefslogtreecommitdiff
path: root/qa/rpc-tests/bumpfee.py
diff options
context:
space:
mode:
authorrht <[email protected]>2021-05-18 05:03:26 -0400
committerrht <[email protected]>2021-05-18 05:52:06 -0400
commit33b9f6cb5e1ef1b2ecd9f0c98a6cf249513cfe80 (patch)
tree7f306c1dcb96598ca372f515dc827205bf512be9 /qa/rpc-tests/bumpfee.py
parentMerge pull request #1886 from fschade/patch-1 (diff)
downloaddiscoin-33b9f6cb5e1ef1b2ecd9f0c98a6cf249513cfe80.tar.xz
discoin-33b9f6cb5e1ef1b2ecd9f0c98a6cf249513cfe80.zip
qa: Fix typos
Diffstat (limited to 'qa/rpc-tests/bumpfee.py')
-rwxr-xr-xqa/rpc-tests/bumpfee.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qa/rpc-tests/bumpfee.py b/qa/rpc-tests/bumpfee.py
index 8e146e741..3c819369f 100755
--- a/qa/rpc-tests/bumpfee.py
+++ b/qa/rpc-tests/bumpfee.py
@@ -81,7 +81,7 @@ def test_simple_bumpfee_succeeds(rbf_node, peer_node, dest_address):
assert rbfid in rbf_node.getrawmempool() and rbfid in peer_node.getrawmempool()
bumped_tx = rbf_node.bumpfee(rbfid)
assert bumped_tx["fee"] - abs(rbftx["fee"]) > 0
- # check that bumped_tx propogates, original tx was evicted and has a wallet conflict
+ # check that bumped_tx propagates, original tx was evicted and has a wallet conflict
sync_mempools((rbf_node, peer_node))
assert bumped_tx["txid"] in rbf_node.getrawmempool()
assert bumped_tx["txid"] in peer_node.getrawmempool()