Skip to content
This repository was archived by the owner on Jan 16, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/client/src/interop/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion bin/client/src/interop/transition.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion bin/host/src/backend/offline.rs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down