We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e17c724 commit 679bbf6Copy full SHA for 679bbf6
src/block_range_scanner.rs
@@ -425,11 +425,14 @@ impl<N: Network> Service<N> {
425
});
426
427
return Ok(());
428
+ } else if start_block < confirmed_tip {
429
+ info!(
430
+ start_block = start_block,
431
+ confirmed_tip = confirmed_tip,
432
+ "Start block is before confirmed tip, syncing historical data"
433
+ );
434
}
435
- info!(start_block = start_block, end_block = confirmed_tip, "Syncing historical data");
-
- // This task runs independently, accumulating new blocks while wehistorical data is syncing
436
tokio::spawn(async move {
437
while start_block < confirmed_tip {
438
Self::stream_historical_blocks(
0 commit comments