From 0b0db1dfa14eb7b9e1195944af241155220fc5a8 Mon Sep 17 00:00:00 2001 From: erhant Date: Mon, 27 Jul 2026 13:08:40 +0300 Subject: [PATCH] chore(sequencer): add TODO about `Slot` update from logos-blockchain --- lez/sequencer/core/src/lib.rs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lez/sequencer/core/src/lib.rs b/lez/sequencer/core/src/lib.rs index c1e3a760..ab4b2612 100644 --- a/lez/sequencer/core/src/lib.rs +++ b/lez/sequencer/core/src/lib.rs @@ -923,8 +923,11 @@ fn apply_follow_update( let mut irreversible: Vec<&Block> = Vec::new(); let mut final_advanced = false; for (this_msg, block) in &finalized { - // FIXME: thread the finalized inscription's L1 slot once the - // sdk surfaces it; only used for the invalid-finalized stall. + // FIXME: thread the finalized inscription's L1 slot instead of + // `Slot::from(0)`; only used for the invalid-finalized stall. + // logos-blockchain PR #3147 surfaces it as `FinalizedTx.l1_slot` — + // wire it through `FollowUpdate::finalized` once the zone-sdk pin is + // bumped past that (a separate PR). match chain.apply_finalized(*this_msg, block, Slot::from(0)) { AcceptOutcome::Applied => { to_persist.push((block, true));