Skip to content

Commit

Permalink
removed unnecessary qualification which linter didn't like
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonio95 committed Jun 3, 2024
1 parent 8d356db commit 61d9a76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion poly-commit/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ pub trait PolynomialCommitment<F: PrimeField, P: Polynomial<F>, S: Cryptographic
// order to gather (i.e. batch) all polynomials that should be queried at
// the same point, then opening their commitments simultaneously with a
// single call to `open` (per point)
let rng = &mut crate::optional_rng::OptionalRng(rng);
let rng = &mut optional_rng::OptionalRng(rng);
let poly_st_comm: BTreeMap<_, _> = labeled_polynomials
.into_iter()
.zip(states)
Expand Down

0 comments on commit 61d9a76

Please sign in to comment.