Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
kunxian-xia committed Jan 8, 2024
1 parent 25cbe57 commit 4e26f06
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions halo2_proofs/src/plonk/mv_lookup/prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,8 @@ 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,
#[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 4e26f06

Please sign in to comment.