Skip to content

Commit

Permalink
delete debug console log
Browse files Browse the repository at this point in the history
  • Loading branch information
mpenciak committed Jul 26, 2023
1 parent 1395781 commit ad161de
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/verifier/step4/SumcheckLogic.sol
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ library SecondarySumcheck {
uint256 num_rounds,
uint256 degree_bound,
KeccakTranscriptLib.KeccakTranscript memory transcript
) public view returns (uint256, uint256[] memory, KeccakTranscriptLib.KeccakTranscript memory) {
) public pure returns (uint256, uint256[] memory, KeccakTranscriptLib.KeccakTranscript memory) {
uint256 e = claim;
uint256[] memory r = new uint256[](num_rounds);

Expand Down Expand Up @@ -478,7 +478,6 @@ library SecondarySumcheck {
uint256 r_i;
(transcript, r_i) = KeccakTranscriptLib.squeeze(transcript, ScalarFromUniformLib.curvePallas(), c_label);

console.log("got here");
r[i] = r_i;

e = VestaPolyLib.evaluate(poly, r_i);
Expand Down

0 comments on commit ad161de

Please sign in to comment.