diff options
-rwxr-xr-x | test/functional/p2p_leak_tx.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/p2p_leak_tx.py b/test/functional/p2p_leak_tx.py index 0a331eb96e..f53f98e06d 100755 --- a/test/functional/p2p_leak_tx.py +++ b/test/functional/p2p_leak_tx.py @@ -57,6 +57,7 @@ class P2PLeakTxTest(BitcoinTestFramework): tx_b = tx_a["tx"] tx_b.vout[0].nValue -= 9000 self.gen_node.sendrawtransaction(tx_b.serialize().hex()) + inbound_peer.wait_until(lambda: "tx" in inbound_peer.last_message and inbound_peer.last_message.get("tx").tx.getwtxid() == tx_b.getwtxid()) self.log.info("Re-request of tx_a after replacement is answered with notfound") req_vec = [ |