From de67ef7b6edaf1ec808345abdabf2ae5a17fcb97 Mon Sep 17 00:00:00 2001 From: erhant Date: Fri, 10 Jul 2026 13:32:07 +0300 Subject: [PATCH] chore: formatting --- lez/sequencer/core/src/lib.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lez/sequencer/core/src/lib.rs b/lez/sequencer/core/src/lib.rs index 33d92732..482015ce 100644 --- a/lez/sequencer/core/src/lib.rs +++ b/lez/sequencer/core/src/lib.rs @@ -324,8 +324,9 @@ impl SequencerCore { /// Feed one channel delta into the follow state: revert orphaned, apply /// adopted, then finalize. Production builds on this same head. /// - /// TODO: persist adopted/finalized peer blocks to the store here so restart and RPC see the full canonical chain, not just our own blocks. - /// Open question: will peers communicate in another way? + /// TODO: persist adopted/finalized peer blocks to the store here so restart and RPC see the + /// full canonical chain, not just our own blocks. Open question: will peers communicate in + /// another way? fn on_follow(chain: Arc>) -> block_publisher::OnFollowSink { Box::new(move |update: block_publisher::FollowUpdate| { let chain = Arc::clone(&chain);