From f63f736f153817cce1bec59c417835e8b045c4e7 Mon Sep 17 00:00:00 2001 From: 0xfirefist Date: Tue, 7 May 2024 14:04:29 +0530 Subject: [PATCH] some changes --- apps/fortuna/src/keeper.rs | 57 +++++++++++++++++++++----------------- 1 file changed, 32 insertions(+), 25 deletions(-) diff --git a/apps/fortuna/src/keeper.rs b/apps/fortuna/src/keeper.rs index 39e61b2b..115105f1 100644 --- a/apps/fortuna/src/keeper.rs +++ b/apps/fortuna/src/keeper.rs @@ -481,36 +481,43 @@ pub async fn retry_past_blocks( ) { // initialize with backlog range let mut from_block = latest_safe_block - BACKLOG_RANGE; - let mut latest_safe_block = latest_safe_block; + let mut to_block = latest_safe_block; loop { - tracing::info!( - from_block = &from_block, - to_block = &latest_safe_block, - "Retrying past blocks" - ); + // As we are adding a lag to latest_safe_block by subtracting BLOCK_BATCH_SIZE, + // we need to check the following condition + if to_block > from_block { + tracing::info!( + from_block = &from_block, + to_block = &to_block, + "Retrying past blocks" + ); - process_block_range( - BlockRange { - from: from_block, - to: latest_safe_block, - }, - contract.clone(), - gas_limit, - chain_state.clone(), - ) - .in_current_span() - .await; + process_block_range( + BlockRange { + from: from_block, + to: to_block, + }, + contract.clone(), + gas_limit, + chain_state.clone(), + ) + .in_current_span() + .await; - tracing::info!( - from_block = &from_block, - to_block = &latest_safe_block, - "Retried past blocks" - ); + tracing::info!( + from_block = &from_block, + to_block = &to_block, + "Retried past blocks" + ); - from_block = latest_safe_block + 1; + from_block = to_block + 1; - tracing::info!("Waiting for 10 minutes before retrying again"); + tracing::info!("Waiting for 10 minutes before retrying again"); + } time::sleep(RETRY_PAST_BLOCKS_INTERVAL).await; - latest_safe_block = get_latest_safe_block(&chain_state).in_current_span().await; + // We don't want to process the same blocks as the watch_blocks at the same time. + // If we process them at the same time, the events might be missed by the both. + // We will lag the range by `BLOCK_BATCH_SIZE`. + to_block = get_latest_safe_block(&chain_state).in_current_span().await - BLOCK_BATCH_SIZE; } }