feat(node): remove freelist from status log (#10395)

This commit is contained in:
Alexey Shekhirin
2024-08-20 07:20:55 -07:00
committed by GitHub
parent 3373670723
commit 5470574bf2
8 changed files with 9 additions and 48 deletions

View File

@ -114,12 +114,7 @@ impl ImportCommand {
let latest_block_number =
provider.get_stage_checkpoint(StageId::Finish)?.map(|ch| ch.block_number);
tokio::spawn(reth_node_events::node::handle_events(
None,
latest_block_number,
events,
provider_factory.db_ref().clone(),
));
tokio::spawn(reth_node_events::node::handle_events(None, latest_block_number, events));
// Run pipeline
info!(target: "reth::cli", "Starting sync pipeline");