Skip to content

Fix typo #108

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
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