From 288626a374339759702db3741e2ba404e365c24a Mon Sep 17 00:00:00 2001 From: brunoerg Date: Mon, 19 Aug 2024 18:55:52 -0300 Subject: [PATCH] test: fix check SENDTXRCNCL without WTXIDRELAY is ignored in `p2p_sendtxrcncl.py` --- test/functional/p2p_sendtxrcncl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/p2p_sendtxrcncl.py b/test/functional/p2p_sendtxrcncl.py index 2c7216b5ca367..6400a643fd359 100755 --- a/test/functional/p2p_sendtxrcncl.py +++ b/test/functional/p2p_sendtxrcncl.py @@ -217,7 +217,7 @@ def run_test(self): self.log.info('SENDTXRCNCL without WTXIDRELAY is ignored (recon state is erased after VERACK)') peer = self.nodes[0].add_p2p_connection(PeerNoVerack(wtxidrelay=False), send_version=True, wait_for_verack=False) - with self.nodes[0].assert_debug_log(['Forget txreconciliation state of peer']): + with self.nodes[0].assert_debug_log(['Register peer', 'Forget txreconciliation state of peer']): peer.send_message(create_sendtxrcncl_msg()) peer.send_message(msg_verack()) self.nodes[0].disconnect_p2ps()