mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-15 11:36:00 -05:00
Merge #21084: test: fix timeout decrease in feature_assumevalid
0d39b5848a
test: fix timeout decrease in feature_assumevalid (Bruno Garcia) Pull request description: This PR fixes the timeout decrease in assert_blockchain_height function. ACKs for top commit: practicalswift: cr ACK0d39b5848a
: patch looks correct theStack: ACK0d39b5848a
⏲️ Tree-SHA512: ae3c83420b4de4ad41f1b20b6e77c3a26a8c5ac4fb136b2645fde119545a413c61312f76a16473141774bc955d30ac4fc86e5ca6cf729f8978a17d0dab520feb
This commit is contained in:
commit
c969ab43c3
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ class AssumeValidTest(BitcoinTestFramework):
|
||||||
last_height = current_height
|
last_height = current_height
|
||||||
if timeout < 0:
|
if timeout < 0:
|
||||||
assert False, "blockchain too short after timeout: %d" % current_height
|
assert False, "blockchain too short after timeout: %d" % current_height
|
||||||
timeout - 0.25
|
timeout -= 0.25
|
||||||
continue
|
continue
|
||||||
elif current_height > height:
|
elif current_height > height:
|
||||||
assert False, "blockchain too long: %d" % current_height
|
assert False, "blockchain too long: %d" % current_height
|
||||||
|
|
Loading…
Add table
Reference in a new issue