Skip to content

Commit

Permalink
func: test orphan parent is re-requested from 2nd peer
Browse files Browse the repository at this point in the history
  • Loading branch information
instagibbs committed Dec 3, 2024
1 parent ebe4cac commit 0f84cdd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/functional/p2p_orphan_handling.py
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ def test_orphans_overlapping_parents(self):

# The wtxid and txid need to be the same for the node to recognize that the missing input
# and in-flight request for inflight_parent_AB are the same transaction.
assert_equal(inflight_parent_AB["txid"], inflight_parent_AB["tx"].getwtxid())
assert_equal(inflight_parent_AB["txid"], inflight_parent_AB["wtxid"])

# Announce inflight_parent_AB and wait for getdata
peer_txrequest.send_and_ping(msg_inv([CInv(t=MSG_WTX, h=int(inflight_parent_AB["tx"].getwtxid(), 16))]))
Expand All @@ -365,6 +365,10 @@ def test_orphans_overlapping_parents(self):
peer_orphans.wait_for_parent_requests([int(missing_parent_B["txid"], 16)])
peer_orphans.assert_never_requested(int(inflight_parent_AB["txid"], 16))

# But inflight_parent_AB will be requested eventually if original peer doesn't respond
node.bumpmocktime(GETDATA_TX_INTERVAL)
peer_orphans.wait_for_parent_requests([int(inflight_parent_AB["txid"], 16)])

@cleanup
def test_orphan_of_orphan(self):
node = self.nodes[0]
Expand Down

0 comments on commit 0f84cdd

Please sign in to comment.