Skip to content

Commit

Permalink
plonk: transcript hasher code formattting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Vesselin Velichkov committed Aug 16, 2022
1 parent a10d0f9 commit 793e649
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion libsnark/zk_proof_systems/plonk/tests/test_plonk.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,14 @@ void test_plonk_prover_round_three(
transcript_hasher<ppT> &hasher)
{
round_three_out_t<ppT> round_three_out = plonk_prover<ppT>::round_three(
alpha, beta, gamma, round_zero_out, round_one_out, round_two_out, srs, hasher);
alpha,
beta,
gamma,
round_zero_out,
round_one_out,
round_two_out,
srs,
hasher);
printf("[%s:%d] Output from Round 3\n", __FILE__, __LINE__);
printf("[%s:%d] t_poly_long\n", __FILE__, __LINE__);
print_vector(round_three_out.t_poly_long);
Expand Down

0 comments on commit 793e649

Please sign in to comment.