diff options
author | MarcoFalke <falke.marco@gmail.com> | 2018-08-08 17:22:45 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-08-08 17:22:35 -0400 |
commit | fa5587fe71ce041dc69cb0d46697975bb51ef1f6 (patch) | |
tree | ed1eb744ee32af6b25a90d4557b3af1c3ee62d34 /test/functional/rpc_blockchain.py | |
parent | 1cd5f2cf9a98708767049a7ddf577cc3f4527617 (diff) |
qa: wait_for_verack by default
Diffstat (limited to 'test/functional/rpc_blockchain.py')
-rwxr-xr-x | test/functional/rpc_blockchain.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/functional/rpc_blockchain.py b/test/functional/rpc_blockchain.py index 155d30317a..cfc9958875 100755 --- a/test/functional/rpc_blockchain.py +++ b/test/functional/rpc_blockchain.py @@ -256,12 +256,8 @@ class BlockchainTest(BitcoinTestFramework): def _test_waitforblockheight(self): self.log.info("Test waitforblockheight") - node = self.nodes[0] - - # Start a P2P connection since we'll need to create some blocks. node.add_p2p_connection(P2PInterface()) - node.p2p.wait_for_verack() current_height = node.getblock(node.getbestblockhash())['height'] |