diff --git a/cmd/ethrex/cli.rs b/cmd/ethrex/cli.rs index 95e79f57509..041201fb4f2 100644 --- a/cmd/ethrex/cli.rs +++ b/cmd/ethrex/cli.rs @@ -842,5 +842,5 @@ pub async fn export_blocks( file.write_all(&buffer).expect("Failed to write to file"); buffer.clear(); } - info!(blocks = end.saturating_sub(start), path = %path, "Exported blocks to file"); + info!(blocks = end.saturating_sub(start) + 1, path = %path, "Exported blocks to file"); }