Skip to content

Commit 45b81d2

Browse files
committed
[avalanche] Remove useless timeout in the tx finalization test
Summary: This timeout was added to speed up debugging during development and was missed during the review. Test Plan: ./test/functional/test_runner.py abc_p2p_avalanche_transaction_finalization Reviewers: #bitcoin_abc, PiRK Reviewed By: #bitcoin_abc, PiRK Differential Revision: https://reviews.bitcoinabc.org/D17771
1 parent 7335537 commit 45b81d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/functional/abc_p2p_avalanche_transaction_finalization.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def vote_until_final():
9595
)
9696
return self.nodes[0].isfinaltransaction(uint256_hex(txid))
9797

98-
self.wait_until(vote_until_final, timeout=10)
98+
self.wait_until(vote_until_final)
9999

100100
def test_simple_txs(self):
101101
self.log.info("Check the finalization of simple non-chained txs")

0 commit comments

Comments
 (0)