Skip to content
Merged
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 src/backends/kimchi/prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ mod tests {
.verify(&witness, &full_public_inputs)
.unwrap();

// first fradulent attempt: modifying one of the public output values
// first fraudulent attempt: modifying one of the public output values
// attempt to modify the output value
let invalid_output = VestaField::from(output_val + 1);
full_public_inputs[1] = invalid_output;
Expand Down
2 changes: 1 addition & 1 deletion src/witness.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ impl<B: Backend> CompiledCircuit<B> {
pub fn main_info(&self) -> &FnInfo<B> {
self.circuit
.main_info()
.expect("constrait-writer bug: no main function found in witness generation")
.expect("constraint-writer bug: no main function found in witness generation")
}

pub fn asm(&self, sources: &Sources, debug: bool) -> String {
Expand Down
Loading