Skip to content
This repository was archived by the owner on Aug 3, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions core/src/preflight/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,11 @@ pub async fn batch_preflight<BDP: BlockDataProvider>(
}: BatchPreflightData,
) -> RaikoResult<GuestBatchInput> {
let measurement = Measurement::start("Fetching block data...", false);
info!(
"batch preflight fetching block and parent data for batch {} across {} blocks",
batch_id,
block_numbers.len()
);

let all_block_parent_pairs =
get_batch_blocks_and_parent_data(&provider, &block_numbers).await?;
Expand Down
Loading
Loading