Skip to content

Commit

Permalink
remove debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
yihuang committed Oct 4, 2024
1 parent 5df126d commit eb53b2c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions integration_tests/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,9 @@ def wait_for_block(cli, height, timeout=240):
print(f"get sync status failed: {e}", file=sys.stderr)
else:
current_height = int(get_sync_info(status)["latest_block_height"])
print("debug current height", current_height)
print("current block height", current_height)
if current_height >= height:
break
print("current block height", current_height)
time.sleep(0.5)
else:
raise TimeoutError(f"wait for block {height} timeout")
Expand Down

0 comments on commit eb53b2c

Please sign in to comment.