You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Uncomment for debugging with https://github.com/ed255/plonky2/ at branch `feat/debug`. The repo directory needs to be checked out next to the pod2 repo directory.
Copy file name to clipboardExpand all lines: src/backends/plonky2/circuits/mainpod.rs
+4-27Lines changed: 4 additions & 27 deletions
Original file line number
Diff line number
Diff line change
@@ -269,8 +269,8 @@ impl OperationVerifyGate {
269
269
op_code_ok,
270
270
op_arg_types_ok,
271
271
op_arg_range_ok,
272
-
op_args_eq,// FAILING
273
-
st_ok,// FAILING
272
+
op_args_eq,
273
+
st_ok,
274
274
])
275
275
}
276
276
@@ -465,8 +465,6 @@ impl MainPodVerifyGate {
465
465
.collect();
466
466
let id = builder.hash_n_to_hash_no_pad::<PoseidonHash>(pub_statements_flattened);
467
467
468
-
// 3. TODO check that all `input_statements` of type `ValueOf` with origin=SELF have unique keys (no duplicates). Maybe we can do this via the NewEntry operation (check that the key doesn't exist in a previous statement with ID=SELF)
469
-
470
468
// 4. Verify type
471
469
let type_statement = &pub_statements[0];
472
470
// TODO: Store this hash in a global static with lazy init so that we don't have to
0 commit comments