Skip to content

Commit

Permalink
chore: update dependencies (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
anonymousGiga committed Nov 23, 2023
1 parent 7663de9 commit 2d6d5b4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 7 additions & 6 deletions crates/stages/src/stages/execution.rs
Original file line number Diff line number Diff line change
Expand Up @@ -230,16 +230,17 @@ impl<EF: ExecutorFactory> ExecutionStage<EF> {
let _ = metrics_tx
.send(MetricEvent::CacheDbSizeInfo { block_number, cachedb_size });
}
}

#[cfg(feature = "enable_test_max_th")]
{
println!(
"block_number: {:?}, start_block: {:?}, state.size_hint: {:?}",
#[cfg(feature = "enable_test_max_th")]
{
println!(
"block_number: {:?}, start_block: {:?}, state.size_hint: {:?}, cache_size: {:?}",
block_number,
start_block,
state.size_hint()
state.size_hint(),
cachedb_size,
);
}
}

// Check if we should commit now
Expand Down

0 comments on commit 2d6d5b4

Please sign in to comment.