diff --git a/bin/client/src/interop/mod.rs b/bin/client/src/interop/mod.rs index 8bb5cb574c..fa756b08f8 100644 --- a/bin/client/src/interop/mod.rs +++ b/bin/client/src/interop/mod.rs @@ -100,7 +100,7 @@ where } PreState::TransitionState(ref transition_state) => { // If the claimed L2 block timestamp is less than the prestate timestamp, the - // the claim must be invalid. + // claim must be invalid. if transition_state.pre_state.timestamp >= boot.claimed_l2_timestamp { return Err(FaultProofProgramError::InvalidClaim( boot.agreed_pre_state_commitment, diff --git a/bin/client/src/interop/transition.rs b/bin/client/src/interop/transition.rs index a778a6486a..57b1fde124 100644 --- a/bin/client/src/interop/transition.rs +++ b/bin/client/src/interop/transition.rs @@ -51,7 +51,7 @@ where // Fetch the L2 block hash of the current safe head. let safe_head_hash = fetch_l2_safe_head_hash(oracle.as_ref(), &boot.agreed_pre_state).await?; - // Determine the active L2 chain ID and the fetch rollup configuration. + // Determine the active L2 chain ID and fetch the rollup configuration. let rollup_config = boot .active_rollup_config() .map(Arc::new) diff --git a/bin/host/src/backend/offline.rs b/bin/host/src/backend/offline.rs index 75cba86dd4..a2ca1e531f 100644 --- a/bin/host/src/backend/offline.rs +++ b/bin/host/src/backend/offline.rs @@ -1,4 +1,4 @@ -//! Contains the implementations of the [HintRouter] and [PreimageFetcher] traits.] +//! Contains the implementations of the [HintRouter] and [PreimageFetcher] traits. use crate::kv::KeyValueStore; use async_trait::async_trait;