Skip to content

Commit

Permalink
chore: fix typo (#347)
Browse files Browse the repository at this point in the history
  • Loading branch information
calciumbe authored Dec 30, 2024
1 parent e184658 commit e90666d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -510,14 +510,14 @@ where
let is_inputs_not_match = self.z0_primary != z0_primary || self.z0_secondary != z0_secondary;

// check if the (relaxed) R1CS instances have two public outputs
let is_instance_has_two_outpus = self.l_u_secondary.X.len() != 2
let is_instance_has_two_outputs = self.l_u_secondary.X.len() != 2
|| self.r_U_primary.X.len() != 2
|| self.r_U_secondary.X.len() != 2;

if is_num_steps_zero
|| is_num_steps_not_match
|| is_inputs_not_match
|| is_instance_has_two_outpus
|| is_instance_has_two_outputs
{
return Err(NovaError::ProofVerifyError);
}
Expand Down

0 comments on commit e90666d

Please sign in to comment.