Skip to content

Commit

Permalink
test: fix timeout decrease in feature_assumevalid
Browse files Browse the repository at this point in the history
  • Loading branch information
brunoerg committed Feb 4, 2021
1 parent ea5a50f commit 0d39b58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/functional/feature_assumevalid.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def assert_blockchain_height(self, node, height):
last_height = current_height
if timeout < 0:
assert False, "blockchain too short after timeout: %d" % current_height
timeout - 0.25
timeout -= 0.25
continue
elif current_height > height:
assert False, "blockchain too long: %d" % current_height
Expand Down

0 comments on commit 0d39b58

Please sign in to comment.