code review findings

This commit is contained in:
Nicholas Wehr
2025-08-22 14:23:22 -07:00
parent 06f7710777
commit e8be4c2e82

View File

@ -286,7 +286,7 @@ impl BlockIngest {
self.start_local_ingest_loop(height, current_block_timestamp).await; self.start_local_ingest_loop(height, current_block_timestamp).await;
loop { loop {
let Some(original_block) = self.collect_block(head).await else { let Some(original_block) = self.collect_block(height).await else {
tokio::time::sleep(std::time::Duration::from_millis(25)).await; tokio::time::sleep(std::time::Duration::from_millis(25)).await;
continue; continue;
}; };