mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 11:57:28 -03:00
test: Remove redundant sync_with_ping after add_p2p_connection
Also replace the two-line (send_message + sync_with_ping) with the one-line send_and_ping
This commit is contained in:
parent
fa90647045
commit
faf1d04731
2 changed files with 3 additions and 7 deletions
|
@ -47,8 +47,7 @@ class RejectLowDifficultyHeadersTest(BitcoinTestFramework):
|
|||
|
||||
self.log.info("Feed all non-fork headers, including and up to the first checkpoint")
|
||||
self.nodes[0].add_p2p_connection(P2PInterface())
|
||||
self.nodes[0].p2p.send_message(msg_headers(self.headers))
|
||||
self.nodes[0].p2p.sync_with_ping()
|
||||
self.nodes[0].p2p.send_and_ping(msg_headers(self.headers))
|
||||
assert {
|
||||
'height': 546,
|
||||
'hash': '000000002a936ca763904c3c35fce2f3556c559c0214345d31b1bcebf76acb70',
|
||||
|
@ -65,8 +64,7 @@ class RejectLowDifficultyHeadersTest(BitcoinTestFramework):
|
|||
# On node 0 it succeeds because checkpoints are disabled
|
||||
self.restart_node(0, extra_args=['-nocheckpoints'])
|
||||
self.nodes[0].add_p2p_connection(P2PInterface())
|
||||
self.nodes[0].p2p.send_message(msg_headers(self.headers_fork))
|
||||
self.nodes[0].p2p.sync_with_ping()
|
||||
self.nodes[0].p2p.send_and_ping(msg_headers(self.headers_fork))
|
||||
assert {
|
||||
"height": 2,
|
||||
"hash": "00000000b0494bd6c3d5ff79c497cfce40831871cbf39b1bc28bd1dac817dc39",
|
||||
|
@ -76,8 +74,7 @@ class RejectLowDifficultyHeadersTest(BitcoinTestFramework):
|
|||
|
||||
# On node 1 it succeeds because no checkpoint has been reached yet by a chain tip
|
||||
self.nodes[1].add_p2p_connection(P2PInterface())
|
||||
self.nodes[1].p2p.send_message(msg_headers(self.headers_fork))
|
||||
self.nodes[1].p2p.sync_with_ping()
|
||||
self.nodes[1].p2p.send_and_ping(msg_headers(self.headers_fork))
|
||||
assert {
|
||||
"height": 2,
|
||||
"hash": "00000000b0494bd6c3d5ff79c497cfce40831871cbf39b1bc28bd1dac817dc39",
|
||||
|
|
|
@ -140,7 +140,6 @@ class InvalidMessagesTest(BitcoinTestFramework):
|
|||
|
||||
# Node is still up.
|
||||
conn = node.add_p2p_connection(P2PDataStore())
|
||||
conn.sync_with_ping()
|
||||
|
||||
def test_magic_bytes(self):
|
||||
conn = self.nodes[0].add_p2p_connection(P2PDataStore())
|
||||
|
|
Loading…
Reference in a new issue