Skip to content

Commit

Permalink
Fix merging, JS lock files update
Browse files Browse the repository at this point in the history
  • Loading branch information
skaunov committed Oct 20, 2023
1 parent da9f5fb commit d8fb1b8
Show file tree
Hide file tree
Showing 3 changed files with 93 additions and 6,214 deletions.
4 changes: 2 additions & 2 deletions circuits/verify_nullifier.circom
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ template plume_v1(n, k, message_length) {
// precomputed value for the sha256 component. TODO: calculate internally in circom to simplify API
signal input sha256_preimage_bit_length;

component check_ec_equations = check_ec_equations(n, k, msg_length);
component check_ec_equations = check_ec_equations(n, k, message_length);

check_ec_equations.c <== c;
check_ec_equations.s <== s;
Expand Down Expand Up @@ -115,7 +115,7 @@ template plume_v2(n, k, message_length) {
signal input q1_x_mapped[4];
signal input q1_y_mapped[4];

component check_ec_equations = check_ec_equations(n, k, msg_length);
component check_ec_equations = check_ec_equations(n, k, message_length);

check_ec_equations.c <== c;
check_ec_equations.s <== s;
Expand Down
Loading

0 comments on commit d8fb1b8

Please sign in to comment.