Skip to content
Open
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 crates/build-guest/src/verifier/io_converter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<F>, idx: usize) -> Vec<Instruction<F>> {
Expand Down
2 changes: 1 addition & 1 deletion crates/circuits/types/src/chunk/public_inputs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion crates/prover/src/task/batch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down