Skip to content

Commit

Permalink
Temporarily add logging of challenges, to catch a bug on CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
martun committed May 7, 2024
1 parent a96e603 commit dad75fa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/nil/crypto3/zk/transcript/fiat_shamir.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,8 @@ namespace nil {

template<typename Field>
typename Field::value_type challenge() {
return sponge.squeeze();
typename Field::value_type result = sponge.squeeze();
return result;
}

template<typename Integral>
Expand Down

0 comments on commit dad75fa

Please sign in to comment.