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
4 changes: 2 additions & 2 deletions starky/src/interpreter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ fn set_ref<T: FieldExtension>(
"tmp" => Expr::new(Ops::Refer, vec!["tmp".to_string()], vec![], vec![r.id, 0, modulas, 0]),
"q" => {
if dom == "n" {
panic!("Accesssing q in domain n");
panic!("Accessing q in domain n");
} else if dom == "2ns" {
if starkinfo.q_dim == 3 {
Expr::new(
Expand All @@ -323,7 +323,7 @@ fn set_ref<T: FieldExtension>(
}
"f" => {
if dom == "n" {
panic!("Accesssing q in domain n");
panic!("Accessing q in domain n");
} else if dom == "2ns" {
Expr::new(
Ops::Refer,
Expand Down
2 changes: 1 addition & 1 deletion starky/src/pil2circom.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pub struct StarkOption {
pub enable_input: bool,
// normalize the proof
pub verkey_input: bool,
// aggragte the proof
// aggregate the proof
pub agg_stage: bool,
// generate the main component in Circom
pub skip_main: bool,
Expand Down