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);