diff options
| author | Suhas Daftuar <[email protected]> | 2017-10-20 16:24:10 -0400 |
|---|---|---|
| committer | Suhas Daftuar <[email protected]> | 2017-10-23 08:55:21 -0400 |
| commit | 6d51eaefe924bfaf2b0f4928dd6020023733480f (patch) | |
| tree | 15ac76839a57e2f0c101206686cfae24055c9526 | |
| parent | qa: Fix replace-by-fee race condition failures (diff) | |
| download | discoin-6d51eaefe924bfaf2b0f4928dd6020023733480f.tar.xz discoin-6d51eaefe924bfaf2b0f4928dd6020023733480f.zip | |
qa: Fix race condition in sendheaders.py
| -rwxr-xr-x | test/functional/replace-by-fee.py | 6 | ||||
| -rwxr-xr-x | test/functional/sendheaders.py | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/test/functional/replace-by-fee.py b/test/functional/replace-by-fee.py index 17667b0bc..815e96484 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() diff --git a/test/functional/sendheaders.py b/test/functional/sendheaders.py index fe577dc20..60d107b24 100755 --- a/test/functional/sendheaders.py +++ b/test/functional/sendheaders.py @@ -225,6 +225,10 @@ class SendHeadersTest(BitcoinTestFramework): inv_node.wait_for_verack() test_node.wait_for_verack() + # Ensure verack's have been processed by our peer + inv_node.sync_with_ping() + test_node.sync_with_ping() + tip = int(self.nodes[0].getbestblockhash(), 16) # PART 1 |