diff options
author | Suhas Daftuar <sdaftuar@chaincode.com> | 2017-10-20 16:24:10 -0400 |
---|---|---|
committer | Suhas Daftuar <sdaftuar@gmail.com> | 2017-10-23 08:55:21 -0400 |
commit | 6d51eaefe924bfaf2b0f4928dd6020023733480f (patch) | |
tree | 15ac76839a57e2f0c101206686cfae24055c9526 /test/functional/replace-by-fee.py | |
parent | c96b2e4f096780c75e3fa8acba496d71322583a1 (diff) |
qa: Fix race condition in sendheaders.py
Diffstat (limited to 'test/functional/replace-by-fee.py')
-rwxr-xr-x | test/functional/replace-by-fee.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/functional/replace-by-fee.py b/test/functional/replace-by-fee.py index 17667b0bcc..815e964848 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() |