aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSebastian Falbesoner <sebastian.falbesoner@gmail.com>2020-04-03 22:11:08 +0200
committerSebastian Falbesoner <sebastian.falbesoner@gmail.com>2020-04-03 22:11:08 +0200
commit3dc8c012f0a40756f3c4359dbe169c03d7c8a725 (patch)
treeb072312ec7213defd046ab9665898e377c9aee36 /test
parentc8971547d9c9460fcbec6f54888df83f002c3dfd (diff)
downloadbitcoin-3dc8c012f0a40756f3c4359dbe169c03d7c8a725.tar.xz
test: remaining replacements of (send_message+sync_with_ping) with send_and_ping
Diffstat (limited to 'test')
-rwxr-xr-xtest/functional/p2p_segwit.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/test/functional/p2p_segwit.py b/test/functional/p2p_segwit.py
index 118f31382a..d8dce7fe56 100755
--- a/test/functional/p2p_segwit.py
+++ b/test/functional/p2p_segwit.py
@@ -125,8 +125,7 @@ def test_transaction_acceptance(node, p2p, tx, with_witness, accepted, reason=No
- use the getrawmempool rpc to check for acceptance."""
reason = [reason] if reason else []
with node.assert_debug_log(expected_msgs=reason):
- p2p.send_message(msg_tx(tx) if with_witness else msg_no_witness_tx(tx))
- p2p.sync_with_ping()
+ p2p.send_and_ping(msg_tx(tx) if with_witness else msg_no_witness_tx(tx))
assert_equal(tx.hash in node.getrawmempool(), accepted)
@@ -137,8 +136,7 @@ def test_witness_block(node, p2p, block, accepted, with_witness=True, reason=Non
- use the getbestblockhash rpc to check for acceptance."""
reason = [reason] if reason else []
with node.assert_debug_log(expected_msgs=reason):
- p2p.send_message(msg_block(block) if with_witness else msg_no_witness_block(block))
- p2p.sync_with_ping()
+ p2p.send_and_ping(msg_block(block) if with_witness else msg_no_witness_block(block))
assert_equal(node.getbestblockhash() == block.hash, accepted)