mirror of
https://github.com/saymrwulf/pasta_curves-source.git
synced 2026-09-06 20:20:34 +00:00
Fix stable clippy lints
This commit is contained in:
parent
5a6a45c6a8
commit
10676657f4
1 changed files with 3 additions and 3 deletions
|
|
@ -514,7 +514,7 @@ impl<C: CurveAffine> Proof<C> {
|
||||||
{
|
{
|
||||||
instances.push(ProverQuery {
|
instances.push(ProverQuery {
|
||||||
point: x_3,
|
point: x_3,
|
||||||
poly: poly,
|
poly,
|
||||||
blind: *blind,
|
blind: *blind,
|
||||||
eval: *eval,
|
eval: *eval,
|
||||||
});
|
});
|
||||||
|
|
@ -529,7 +529,7 @@ impl<C: CurveAffine> Proof<C> {
|
||||||
{
|
{
|
||||||
instances.push(ProverQuery {
|
instances.push(ProverQuery {
|
||||||
point: x_3,
|
point: x_3,
|
||||||
poly: poly,
|
poly,
|
||||||
blind: Blind::default(),
|
blind: Blind::default(),
|
||||||
eval: *eval,
|
eval: *eval,
|
||||||
});
|
});
|
||||||
|
|
@ -544,7 +544,7 @@ impl<C: CurveAffine> Proof<C> {
|
||||||
{
|
{
|
||||||
instances.push(ProverQuery {
|
instances.push(ProverQuery {
|
||||||
point: x_3_inv,
|
point: x_3_inv,
|
||||||
poly: poly,
|
poly,
|
||||||
blind: *blind,
|
blind: *blind,
|
||||||
eval: *eval,
|
eval: *eval,
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue