Skip to content

Commit

Permalink
fix: printout
Browse files Browse the repository at this point in the history
  • Loading branch information
atanmarko committed Nov 8, 2024
1 parent 3445091 commit 45c944c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion zero/src/block_interval.rs
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,8 @@ impl BlockInterval {
current += 1;
yield (current, false);
} else {
info!("Waiting for the new blocks to be mined, requested block number: {current}, \
let next = current + 1;
info!("Waiting for the new blocks to be mined, expected block number: {next}, \
latest block number: {last_block_number}");
// No need to poll the node too frequently, waiting
// a block time interval for a block to be mined should be enough
Expand Down

0 comments on commit 45c944c

Please sign in to comment.