test: replace (send_message + sync_with_ping) with send_and_ping

This commit is contained in:
Jon Atack
2020-04-01 15:37:20 +02:00
parent b97e3a7349
commit 6112a20982
8 changed files with 27 additions and 56 deletions

View File

@@ -307,8 +307,7 @@ class SendHeadersTest(BitcoinTestFramework):
new_block.solve()
test_node.send_header_for_blocks([new_block])
test_node.wait_for_getdata([new_block.sha256])
test_node.send_message(msg_block(new_block))
test_node.sync_with_ping() # make sure this block is processed
test_node.send_and_ping(msg_block(new_block)) # make sure this block is processed
wait_until(lambda: inv_node.block_announced, timeout=60, lock=mininode_lock)
inv_node.clear_block_announcements()
test_node.clear_block_announcements()