Skip to content

Commit 4e93eb9

Browse files
committed
fix #153
1 parent ffb55ee commit 4e93eb9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

crates/whir/src/verify.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,7 @@ where
177177
.iter()
178178
.all(|c| verify_constraint_coeffs(c, &final_coefficients))
179179
.then_some(())
180-
.ok_or(ProofError::InvalidProof)
181-
.unwrap();
180+
.ok_or(ProofError::InvalidProof)?;
182181

183182
let final_sumcheck_randomness =
184183
verify_sumcheck_rounds::<F, EF>(verifier_state, &mut claimed_sum, self.final_sumcheck_rounds, 0)?;

0 commit comments

Comments
 (0)