Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zac-williamson committed Sep 5, 2024
1 parent f33095b commit fb7ec37
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ template <typename TranscriptParams> class BaseTranscript {
std::array<Fr, 2> new_challenges = TranscriptParams::split_challenge(new_challenge);
// update previous challenge buffer for next time we call this function
ASSERT(num_challenges <= 2);
previous_challenge = new_challenges[num_challenges - 1];
previous_challenge = new_challenge;
return new_challenges;
};

Expand Down

0 comments on commit fb7ec37

Please sign in to comment.