Skip to content

Commit

Permalink
fix clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
kunxian-xia committed Jan 8, 2024
1 parent 18d93e7 commit 25cbe57
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions halo2_proofs/src/plonk/mv_lookup/prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@ impl<F: PrimeField + WithSmallOrderMulGroup<3> + Ord> Argument<F> {
fixed_values: &'a [Polynomial<C::Scalar, LagrangeCoeff>],
instance_values: &'a [Polynomial<C::Scalar, LagrangeCoeff>],
challenges: &'a [C::Scalar],
#[cfg(feature = "sanity-checks")]
mut rng: R, // in case we want to blind (do we actually need zk?)
#[cfg(not(feature = "sanity-checks"))]
rng: R,
transcript: &mut T,
) -> Result<Prepared<C>, Error>
where
Expand Down

0 comments on commit 25cbe57

Please sign in to comment.