mirror of
https://github.com/saymrwulf/pasta_curves-source.git
synced 2026-09-04 20:03:39 +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 {
|
||||
point: x_3,
|
||||
poly: poly,
|
||||
poly,
|
||||
blind: *blind,
|
||||
eval: *eval,
|
||||
});
|
||||
|
|
@ -529,7 +529,7 @@ impl<C: CurveAffine> Proof<C> {
|
|||
{
|
||||
instances.push(ProverQuery {
|
||||
point: x_3,
|
||||
poly: poly,
|
||||
poly,
|
||||
blind: Blind::default(),
|
||||
eval: *eval,
|
||||
});
|
||||
|
|
@ -544,7 +544,7 @@ impl<C: CurveAffine> Proof<C> {
|
|||
{
|
||||
instances.push(ProverQuery {
|
||||
point: x_3_inv,
|
||||
poly: poly,
|
||||
poly,
|
||||
blind: *blind,
|
||||
eval: *eval,
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue