We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07699b5 commit 917a011Copy full SHA for 917a011
src/group/msm.rs
@@ -76,7 +76,7 @@ impl<G: PrimeGroup> VariableMultiScalarMul for G {
76
77
/// A naive MSM implementation.
78
fn msm_naive<G: PrimeGroup>(bases: &[G], scalars: &[G::Scalar]) -> G {
79
- std::iter::zip(bases, scalars).map(|(g, x)| *g * x).sum()
+ core::iter::zip(bases, scalars).map(|(g, x)| *g * x).sum()
80
}
81
82
/// An MSM implementation that employ's Pippenger's algorithm and works for all groups that
0 commit comments