aboutsummaryrefslogtreecommitdiff
path: root/test/functional/wallet_txn_doublespend.py
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2019-02-15 10:15:28 -0500
committerMarcoFalke <falke.marco@gmail.com>2019-02-19 14:22:15 -0500
commitfa25210d6266d50a6c2bfd6d96062bacb2ae393b (patch)
tree26c7e632a78db9c7cb277cfccd16b19c35167072 /test/functional/wallet_txn_doublespend.py
parent1111aecbb58d6e37d430d477ac43f52811fd97d9 (diff)
downloadbitcoin-fa25210d6266d50a6c2bfd6d96062bacb2ae393b.tar.xz
qa: Fix wallet_txn_doublespend issue
Diffstat (limited to 'test/functional/wallet_txn_doublespend.py')
-rwxr-xr-xtest/functional/wallet_txn_doublespend.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/functional/wallet_txn_doublespend.py b/test/functional/wallet_txn_doublespend.py
index f114d5ab68..9050e21247 100755
--- a/test/functional/wallet_txn_doublespend.py
+++ b/test/functional/wallet_txn_doublespend.py
@@ -34,6 +34,14 @@ class TxnMallTest(BitcoinTestFramework):
def run_test(self):
# All nodes should start with 1,250 BTC:
starting_balance = 1250
+
+ # All nodes should be out of IBD.
+ # If the nodes are not all out of IBD, that can interfere with
+ # blockchain sync later in the test when nodes are connected, due to
+ # timing issues.
+ for n in self.nodes:
+ assert n.getblockchaininfo()["initialblockdownload"] == False
+
for i in range(4):
assert_equal(self.nodes[i].getbalance(), starting_balance)
self.nodes[i].getnewaddress("") # bug workaround, coins generated assigned to first getnewaddress!