Browse Source

[qa] Fix race condition in p2p-compactblocks test

Also fix a bug in the sync_with_ping() helper function

Github-Pull: #8854
Rebased-From: b5fd666984
0.13
Suhas Daftuar 8 years ago committed by MarcoFalke
parent
commit
624a007f47
  1. 2
      qa/rpc-tests/p2p-compactblocks.py
  2. 2
      qa/rpc-tests/test_framework/mininode.py

2
qa/rpc-tests/p2p-compactblocks.py

@ -237,6 +237,8 @@ class CompactBlocksTest(BitcoinTestFramework): @@ -237,6 +237,8 @@ class CompactBlocksTest(BitcoinTestFramework):
for i in range(num_transactions):
self.nodes[0].sendtoaddress(address, 0.1)
self.test_node.sync_with_ping()
# Now mine a block, and look at the resulting compact block.
self.test_node.clear_block_announcement()
block_hash = int(self.nodes[0].generate(1)[0], 16)

2
qa/rpc-tests/test_framework/mininode.py

@ -1536,7 +1536,7 @@ class SingleNodeConnCB(NodeConnCB): @@ -1536,7 +1536,7 @@ class SingleNodeConnCB(NodeConnCB):
def received_pong():
return (self.last_pong.nonce == self.ping_counter)
self.send_message(msg_ping(nonce=self.ping_counter))
success = wait_until(received_pong, timeout)
success = wait_until(received_pong, timeout=timeout)
self.ping_counter += 1
return success

Loading…
Cancel
Save