feat: Make new block fetch more frequent

This commit is contained in:
sprites0
2025-03-04 03:26:53 +00:00
parent 86ce34c2e3
commit 1431181388

View File

@ -95,7 +95,7 @@ impl BlockIngest {
loop {
let Some(original_block) = self.collect_block(height) else {
tokio::time::sleep(std::time::Duration::from_millis(500)).await;
tokio::time::sleep(std::time::Duration::from_millis(200)).await;
continue;
};
let BlockInner::Reth115(mut block) = original_block.block;