Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backend/crates/atlas-server/src/indexer/indexer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ impl Indexer {
let progress = (end_block as f64 / head as f64) * 100.0;

tracing::info!(
start_block = end_block - batch_size as u64 + 1,
start_block = end_block + 1 - batch_size as u64,
end_block,
blocks = batch_size,
elapsed_secs = format_args!("{:.2}", elapsed.as_secs_f64()),
Expand Down