Skip to content

Commit 94736e7

Browse files
committed
fmt
1 parent 6cbd20d commit 94736e7

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

crates/watcher/src/lib.rs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,8 @@ where
317317
if self.is_synced {
318318
tokio::time::sleep(SLOW_SYNC_INTERVAL).await;
319319
} else if self.current_block_number == self.l1_state.head {
320-
// if we have synced to the head of the L1, notify the channel and set the `is_synced`` flag.
320+
// if we have synced to the head of the L1, notify the channel and set the
321+
// `is_synced`` flag.
321322
#[cfg(feature = "test-utils")]
322323
let should_skip = self.test_mode_skip_synced_notification;
323324
#[cfg(not(feature = "test-utils"))]
@@ -825,8 +826,8 @@ where
825826

826827
#[cfg(feature = "test-utils")]
827828
{
828-
// We do not use BlockNumberOrTag::Finalized directly because there is an issue with Anvil.
829-
// See https://github.com/foundry-rs/foundry/issues/12645.
829+
// We do not use BlockNumberOrTag::Finalized directly because there is an issue with
830+
// Anvil. See https://github.com/foundry-rs/foundry/issues/12645.
830831
let block = self
831832
.execution_provider
832833
.get_block(BlockNumberOrTag::Finalized.into())

0 commit comments

Comments
 (0)