[test] fix p2p_orphan_handling.py empty orphanage check

It's possible getorphantxs isn't empty immediately. Prevent intermittent errors.
This commit is contained in:
glozow 2025-01-16 13:56:11 -05:00
parent f9032a4abb
commit 2e75ebb616

View File

@ -59,7 +59,7 @@ def cleanup(func):
self.nodes[0].disconnect_p2ps()
self.nodes[0].bumpmocktime(LONG_TIME_SKIP)
# Check that mempool and orphanage have been cleared
assert_equal(0, len(self.nodes[0].getorphantxs()))
self.wait_until(lambda: len(self.nodes[0].getorphantxs()) == 0)
assert_equal(0, len(self.nodes[0].getrawmempool()))
self.wallet.rescan_utxos(include_mempool=True)
return wrapper