diff --git a/test/functional/p2p_compactblocks.py b/test/functional/p2p_compactblocks.py --- a/test/functional/p2p_compactblocks.py +++ b/test/functional/p2p_compactblocks.py @@ -867,54 +867,50 @@ # We will need UTXOs to construct transactions in later tests. self.make_utxos() - self.log.info("Running tests:") - - self.log.info("\tTesting SENDCMPCT p2p message... ") + self.log.info("Testing SENDCMPCT p2p message... ") self.test_sendcmpct(self.test_node) self.sync_blocks() - self.log.info("\tTesting compactblock construction...") + self.log.info("Testing compactblock construction...") self.test_compactblock_construction(self.test_node) self.sync_blocks() - self.log.info("\tTesting compactblock requests... ") + self.log.info("Testing compactblock requests... ") self.test_compactblock_requests(self.test_node) self.sync_blocks() - self.log.info("\tTesting getblocktxn requests...") + self.log.info("Testing getblocktxn requests...") self.test_getblocktxn_requests(self.test_node) self.sync_blocks() - self.log.info("\tTesting getblocktxn handler...") + self.log.info("Testing getblocktxn handler...") self.test_getblocktxn_handler(self.test_node) self.sync_blocks() - self.log.info( - "\tTesting compactblock requests/announcements not at chain tip..." - ) + self.log.info("Testing compactblock requests/announcements not at chain tip...") self.test_compactblocks_not_at_tip(self.test_node) self.sync_blocks() - self.log.info("\tTesting handling of incorrect blocktxn responses...") + self.log.info("Testing handling of incorrect blocktxn responses...") self.test_incorrect_blocktxn_response(self.test_node) self.sync_blocks() # End-to-end block relay tests - self.log.info("\tTesting end-to-end block relay...") + self.log.info("Testing end-to-end block relay...") self.request_cb_announcements(self.test_node) self.request_cb_announcements(self.additional_test_node) self.test_end_to_end_block_relay([self.test_node, self.additional_test_node]) - self.log.info("\tTesting handling of invalid compact blocks...") + self.log.info("Testing handling of invalid compact blocks...") self.test_invalid_tx_in_compactblock(self.additional_test_node) - self.log.info("\tTesting reconstructing compact blocks from all peers...") + self.log.info("Testing reconstructing compact blocks from all peers...") self.test_compactblock_reconstruction_multiple_peers( self.test_node, self.additional_test_node ) self.sync_blocks() - self.log.info("\tTesting invalid index in cmpctblock message...") + self.log.info("Testing invalid index in cmpctblock message...") self.test_invalid_cmpctblock_message() self.log.info("Testing high-bandwidth mode states via getpeerinfo...")