Skip to content
This repository was archived by the owner on Aug 3, 2026. It is now read-only.

Commit a024598

Browse files
committed
fix: bound batch preflight retries and timeouts
1 parent 336d037 commit a024598

4 files changed

Lines changed: 504 additions & 261 deletions

File tree

core/src/preflight/mod.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,11 @@ pub async fn batch_preflight<BDP: BlockDataProvider>(
228228
}: BatchPreflightData,
229229
) -> RaikoResult<GuestBatchInput> {
230230
let measurement = Measurement::start("Fetching block data...", false);
231+
info!(
232+
"batch preflight fetching block and parent data for batch {} across {} blocks",
233+
batch_id,
234+
block_numbers.len()
235+
);
231236

232237
let all_block_parent_pairs =
233238
get_batch_blocks_and_parent_data(&provider, &block_numbers).await?;

0 commit comments

Comments
 (0)