From 35327d723ac0064b535e19d4f148d3b57c1c1d71 Mon Sep 17 00:00:00 2001 From: Weixie Cui Date: Sun, 22 Feb 2026 11:50:10 +0800 Subject: [PATCH] chore: remove redundant if statement --- chain/ethereum/src/polling_block_stream.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/chain/ethereum/src/polling_block_stream.rs b/chain/ethereum/src/polling_block_stream.rs index 705fdaaaf7f..55d2aed3df8 100644 --- a/chain/ethereum/src/polling_block_stream.rs +++ b/chain/ethereum/src/polling_block_stream.rs @@ -370,10 +370,6 @@ impl PollingBlockStreamContext { return Ok(ReconciliationStep::Retry); } - if to > head_ptr.number - reorg_threshold { - return Ok(ReconciliationStep::Retry); - } - info!( ctx.logger, "Scanned blocks [{}, {}]", from, to;