Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ConstanceBeguier committed Sep 29, 2023
1 parent 8b06ebf commit 690db01
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion halo2_gadgets/src/sinsemilla/chip/hash_to_point.rs
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,8 @@ where

field_elems
.zip(x_a.value().zip(y_a.value()))
.assert_if_known(|(field_elems, (x_a, y_a))| {
.zip(Q.point())
.assert_if_known(|((field_elems, (x_a, y_a)), Q)| {
// Get message as a bitstring.
let bitstring: Vec<bool> = field_elems
.iter()
Expand Down

0 comments on commit 690db01

Please sign in to comment.