functional_tests: rewrite mining code, clearer timeout info
continuous-integration/drone/pr Build is passing Details

pull/336/head
iamamyth 4 years ago committed by wowario
parent 94b5378a3b
commit 80a21da5ba
No known key found for this signature in database
GPG Key ID: 24DCBE762DE9C111

@ -95,20 +95,19 @@ class MiningTest():
assert res_status.block_reward >= 600000000000
# wait till we mined a few of them
target_height = prev_height + 5
height = prev_height
timeout = 60 # randomx is slow to init
timeout_height = prev_height
while True:
time.sleep(1)
res_info = daemon.get_info()
height = res_info.height
if height >= prev_height + 5:
break
if height > timeout_height:
timeout = 5
timeout_height = height
while height < target_height:
seen_height = height
for _ in range(timeout):
time.sleep(1)
height = daemon.get_info().height
if height > seen_height:
break
else:
timeout -= 1
assert timeout >= 0
assert False, 'Failed to mine successor to block %d (initial block = %d)' % (seen_height, prev_height)
timeout = 5
if via_daemon:
res = daemon.stop_mining()

Loading…
Cancel
Save