Skip to content
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

Fix/err #15

Open
wants to merge 2 commits into
base: main
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 ark-bcs/src/bcs/transcript.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ where
}
}

/// Register a virtual oracle specfied by coset evaluator.
/// Register a virtual oracle specified by coset evaluator.
/// * `coset_query_evaluator`: a function that takes a coset and constituent
/// oracles, and return query responses
/// * `evaluation_on_domain`: evaluation of this virtual round on evaluation
Expand Down
2 changes: 1 addition & 1 deletion ark-bcs/src/ldt/rl_ldt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ impl<F: PrimeField + Absorb> LDT<F> for LinearCombinationLDT<F> {
.map(|_| FieldElementSize::Full)
.collect::<Vec<_>>(),
);
transcript.submit_verifier_current_round(namespace, iop_trace!("ldt random coefficeints"));
transcript.submit_verifier_current_round(namespace, iop_trace!("ldt random coefficients"));

let mut result_codewords = (0..param.domain.size())
.map(|_| F::zero())
Expand Down