Skip to content

Commit

Permalink
add print
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnaudBger committed Oct 24, 2024
1 parent 3e63fbb commit b20baee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ impl State {
self.last_purged_block = block_num;
}

pub fn stats(&mut self) -> String {
format!(
pub fn stats(&mut self) {
println!(
"last_confirmed_block: {}, last_purged_block: {}, block_account_changes: {}",
self.last_confirmed_block, self.last_purged_block, self.block_account_changes.len()
)
Expand Down

0 comments on commit b20baee

Please sign in to comment.