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 d6a78f9 commit dc3ce49Copy full SHA for dc3ce49
crates/chain-orchestrator/src/consolidation.rs
@@ -38,10 +38,7 @@ pub(crate) async fn reconcile_batch<L2P: Provider<Scroll>>(
38
39
// The block matches the derived attributes and the block is below or equal to the
40
// safe current safe head.
41
- if attributes.block_number <= fcs.finalized_block_info().number ||
42
- ((attributes.block_number <= fcs.safe_block_info().number) &&
43
- batch.target_status.is_consolidated())
44
- {
+ if attributes.block_number <= fcs.finalized_block_info().number {
45
Ok::<_, ChainOrchestratorError>(BlockConsolidationAction::Skip(block_info))
46
} else {
47
// The block matches the derived attributes, no action is needed.
0 commit comments