Skip to content

Commit 8dd547d

Browse files
committed
Adding logging for loop iteration level in p2p_sendheaders.py
Changing logs to debug level and format of statment to j == ... Updating debug statements to include comments when checking for iteration level of i and j Removing comments above log prints in Part 3 Removing unwanted file Added log prints in loops in p2p_sendheaders
1 parent 29fad97 commit 8dd547d

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

test/functional/p2p_sendheaders.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -411,21 +411,18 @@ def test_nonnull_locators(self, test_node, inv_node):
411411
inv_node.check_last_announcement(inv=[tip], headers=[])
412412
test_node.check_last_announcement(inv=[tip], headers=[])
413413
if i == 0:
414-
# Just get the data -- shouldn't cause headers announcements to resume
414+
self.log.debug("Just get the data -- shouldn't cause headers announcements to resume")
415415
test_node.send_get_data([tip])
416416
test_node.wait_for_block(tip)
417417
elif i == 1:
418-
# Send a getheaders message that shouldn't trigger headers announcements
419-
# to resume (best header sent will be too old)
418+
self.log.debug("Send a getheaders message that shouldn't trigger headers announcements to resume (best header sent will be too old)")
420419
test_node.send_get_headers(locator=[fork_point], hashstop=new_block_hashes[1])
421420
test_node.send_get_data([tip])
422421
test_node.wait_for_block(tip)
423422
elif i == 2:
424423
test_node.send_get_data([tip])
425424
test_node.wait_for_block(tip)
426-
# This time, try sending either a getheaders to trigger resumption
427-
# of headers announcements, or mine a new block and inv it, also
428-
# triggering resumption of headers announcements.
425+
self.log.debug("This time, try sending either a getheaders to trigger resumption of headers announcements, or mine a new block and inv it, also triggering resumption of headers announcements.")
429426
if j == 0:
430427
test_node.send_get_headers(locator=[tip], hashstop=0)
431428
test_node.sync_with_ping()

0 commit comments

Comments
 (0)