From 9dbd1c5f930b36cc6732bab98a7cd7e486071d6e Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Sat, 19 Apr 2025 13:19:48 +0300 Subject: [PATCH 1/3] Update public_inputs.rs --- crates/circuits/types/src/chunk/public_inputs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/circuits/types/src/chunk/public_inputs.rs b/crates/circuits/types/src/chunk/public_inputs.rs index 1682e713..0ba0b56e 100644 --- a/crates/circuits/types/src/chunk/public_inputs.rs +++ b/crates/circuits/types/src/chunk/public_inputs.rs @@ -173,7 +173,7 @@ pub struct ChunkInfo { #[rkyv()] pub withdraw_root: B256, /// Digest of L1 message txs force included in the chunk. - /// It is a legacy field and can be omitted in new defination + /// It is a legacy field and can be omitted in new definition #[rkyv()] #[serde(default)] pub data_hash: B256, From 3940e1beb598b284dceb40a994a4bf805c8e589c Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Sat, 19 Apr 2025 13:20:17 +0300 Subject: [PATCH 2/3] Update io_converter.rs --- crates/build-guest/src/verifier/io_converter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/build-guest/src/verifier/io_converter.rs b/crates/build-guest/src/verifier/io_converter.rs index bed81a2b..f3484b83 100644 --- a/crates/build-guest/src/verifier/io_converter.rs +++ b/crates/build-guest/src/verifier/io_converter.rs @@ -5,7 +5,7 @@ use p3_field::FieldAlgebra; use super::asm_utils::*; -// This function assumes the pi is published in sequencial order +// This function assumes the pi is published in sequential order // `convert_publish_v1` was a more general version, but now `castf` cannot write to register, // so I have to use the `idx` here. pub fn convert_publish(op: Instruction, idx: usize) -> Vec> { From c14923be24b01e4c1bd8bdbd59fd5526fc5137dc Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Sat, 19 Apr 2025 13:20:50 +0300 Subject: [PATCH 3/3] Update batch.rs --- crates/prover/src/task/batch.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/prover/src/task/batch.rs b/crates/prover/src/task/batch.rs index aaa76505..73b6b4d3 100644 --- a/crates/prover/src/task/batch.rs +++ b/crates/prover/src/task/batch.rs @@ -19,7 +19,7 @@ use crate::{ /// Define variable batch header type, since BatchHeaderV6 can not /// be decoded as V7 we can always has correct deserialization /// Notice: V6 header MUST be put above V7 since untagged enum -/// try to decode each defination in order +/// try to decode each definition in order #[derive(Clone, serde::Deserialize, serde::Serialize)] #[serde(untagged)] pub enum BatchHeaderV {