Skip to content

Commit 20f6002

Browse files
committed
chore: doc comments
1 parent 2572326 commit 20f6002

File tree

2 files changed

+5
-5
lines changed
  • crates/sp1

2 files changed

+5
-5
lines changed

crates/sp1/evm-exec/program/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//! 1. Accepts an EVM block and associated Celestia proofs
44
//! 2. Verifies that the EVM block was included in the Celestia block
55
//! 3. Executes the EVM block
6-
//! 4. Commits the resulting EVM block metadata and hash as public outputs
6+
//! 4. Commits the resulting EVM and Celestia block metadata as public outputs
77
88
#![no_main]
99

crates/sp1/evm-range-exec/program/src/main.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@
66
//!
77
//! It performs:
88
//! 1. Proof verification for each input
9-
//! 2. Header linkage verification (i.e., block continuity)
9+
//! 2. Sequential header verification (i.e., block continuity)
1010
//! 3. Aggregation of metadata into a `EvmRangeExecOutput`
1111
//!
1212
//! It commits:
13-
//! - The oldest and newest EVM block header hashes
14-
//! - The final block height and state root
15-
//! - All Celestia header hashes from the sequence
13+
//! - The trusted block height and state root
14+
//! - The new block height and state root
15+
//! - The latest Celestia header hash from the sequence
1616
1717
#![no_main]
1818
sp1_zkvm::entrypoint!(main);

0 commit comments

Comments
 (0)