Skip to content

Commit

Permalink
fix github running error
Browse files Browse the repository at this point in the history
  • Loading branch information
YaoGalteland committed Mar 24, 2024
1 parent 2819ea5 commit 4560230
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion halo2_gadgets/src/sinsemilla/chip/generator_table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ impl GeneratorTableConfig {
|mut table| {
self.create_lookup_subtable(&mut table, 0, K)?;

if let Some(table_range_check_tag) = self.table_range_check_tag {
if let Some(_table_range_check_tag) = self.table_range_check_tag {
self.create_lookup_subtable(&mut table, 1 << K, 4)?;

self.create_lookup_subtable(&mut table, (1 << K) + (1 << 4), 5)?;
Expand Down
2 changes: 1 addition & 1 deletion halo2_gadgets/src/sinsemilla/chip/hash_to_point.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ where
let value_Q = match Q {
EccPointQ::PublicPoint(p) => {
// Wrap the EpAffine in Value to match the types
halo2_proofs::circuit::Value::known(p.clone())
halo2_proofs::circuit::Value::known(p)
}
EccPointQ::PrivatePoint(p) => p.point(),
};
Expand Down

0 comments on commit 4560230

Please sign in to comment.