From c92812fc6ff5c2b61ab93ff955e6d0de730d6e1f Mon Sep 17 00:00:00 2001 From: erhant Date: Tue, 14 Jul 2026 21:43:03 +0300 Subject: [PATCH] chore: fix lint --- lez/storage/src/sequencer/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lez/storage/src/sequencer/mod.rs b/lez/storage/src/sequencer/mod.rs index 3a7ab858..d7775e20 100644 --- a/lez/storage/src/sequencer/mod.rs +++ b/lez/storage/src/sequencer/mod.rs @@ -634,11 +634,11 @@ impl RocksDBIO { /// ahead of the stored blocks and tip meta. /// /// Per block, it: - /// - skips the payload write when the store already holds it (matched by id - /// and hash) thus covering our own blocks and re-deliveries + /// - skips the payload write when the store already holds it (matched by id and hash) thus + /// covering our own blocks and re-deliveries /// - stores it as finalized when its `finalized` flag is set /// - /// When nothing needs writing, the state is left untouched too + /// When nothing needs writing, the state is left untouched too. /// /// TODO: the zone-sdk checkpoint is persisted by `on_checkpoint` *before* /// this write; a crash in between resumes past these blocks without them