mirror of
https://github.com/saymrwulf/pasta_curves-source.git
synced 2026-09-04 20:03:39 +00:00
Remove additional unnecessary vector clone from multiopen prover.
This commit is contained in:
parent
55ef4ea1f7
commit
123cacc7cc
1 changed files with 2 additions and 2 deletions
|
|
@ -67,12 +67,12 @@ impl<C: CurveAffine> Proof<C> {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
for commitment_data in poly_map {
|
for commitment_data in poly_map.into_iter() {
|
||||||
accumulate(
|
accumulate(
|
||||||
commitment_data.set_index, // set_idx,
|
commitment_data.set_index, // set_idx,
|
||||||
commitment_data.commitment.poly, // poly,
|
commitment_data.commitment.poly, // poly,
|
||||||
commitment_data.commitment.blind, // blind,
|
commitment_data.commitment.blind, // blind,
|
||||||
commitment_data.evals.to_vec(), // evals
|
commitment_data.evals, // evals
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue