Skip to content

Commit 0d39b58

Browse files
committed
test: fix timeout decrease in feature_assumevalid
1 parent ea5a50f commit 0d39b58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/functional/feature_assumevalid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def assert_blockchain_height(self, node, height):
9090
last_height = current_height
9191
if timeout < 0:
9292
assert False, "blockchain too short after timeout: %d" % current_height
93-
timeout - 0.25
93+
timeout -= 0.25
9494
continue
9595
elif current_height > height:
9696
assert False, "blockchain too long: %d" % current_height

0 commit comments

Comments
 (0)