Skip to content

Commit

Permalink
Return empty vector to transcript initialization #255
Browse files Browse the repository at this point in the history
  • Loading branch information
ETatuzova committed Jan 5, 2024
1 parent 20df0f1 commit ebac50d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ namespace nil {
) {
// 1. Add circuit definition to transcript
// transcript(short_description);
transcript::fiat_shamir_heuristic_sequential<transcript_hash_type> transcript;
transcript::fiat_shamir_heuristic_sequential<transcript_hash_type> transcript(std::vector<std::uint8_t>({}));
transcript(preprocessed_public_data.common_data.vk.constraint_system_hash);
transcript(preprocessed_public_data.common_data.vk.fixed_values_commitment);

Expand Down

0 comments on commit ebac50d

Please sign in to comment.