We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12cda72 commit 701ac82Copy full SHA for 701ac82
barretenberg/sol/src/honk/BaseHonkVerifier.sol
@@ -427,10 +427,8 @@ abstract contract BaseHonkVerifier is IVerifier {
427
mem.constantTermAccumulator = mem.constantTermAccumulator + accumContribution;
428
// Update the running power of v
429
mem.batchingChallenge = mem.batchingChallenge * tp.shplonkNu * tp.shplonkNu;
430
- }
431
432
- for (uint256 i = 0; i < CONST_PROOF_SIZE_LOG_N - 1; ++i) {
433
- commitments[NUMBER_UNSHIFTED + 1 + i] = convertProofPoint(proof.geminiFoldComms[i]);
+ commitments[NUMBER_UNSHIFTED + 1 + i] = proof.geminiFoldComms[i];
434
}
435
436
// Finalize the batch opening claim
0 commit comments