aboutsummaryrefslogtreecommitdiff
path: root/test/functional/replace-by-fee.py
diff options
context:
space:
mode:
authorSuhas Daftuar <sdaftuar@chaincode.com>2017-10-20 16:24:10 -0400
committerMarcoFalke <falke.marco@gmail.com>2017-10-23 17:23:14 +0200
commitadbc9d164a52736408a146294981cdba66de9755 (patch)
tree035fcccc8138542941b42235284edf71140b41d0 /test/functional/replace-by-fee.py
parentfdad04e6170cfab5028b64a02a091c717795c65e (diff)
downloadbitcoin-adbc9d164a52736408a146294981cdba66de9755.tar.xz
qa: Fix race condition in sendheaders.py
Github-Pull: #11538 Rebased-From: 6d51eaefe924bfaf2b0f4928dd6020023733480f
Diffstat (limited to 'test/functional/replace-by-fee.py')
-rwxr-xr-xtest/functional/replace-by-fee.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/functional/replace-by-fee.py b/test/functional/replace-by-fee.py
index 43005e98b9..1fd7c91278 100755
--- a/test/functional/replace-by-fee.py
+++ b/test/functional/replace-by-fee.py
@@ -72,12 +72,14 @@ class ReplaceByFeeTest(BitcoinTestFramework):
["-mempoolreplacement=0"]]
def run_test(self):
- # Leave IBD and ensure nodes are synced
+ # Leave IBD
self.nodes[0].generate(1)
- self.sync_all()
make_utxo(self.nodes[0], 1*COIN)
+ # Ensure nodes are synced
+ self.sync_all()
+
self.log.info("Running test simple doublespend...")
self.test_simple_doublespend()