Skip to content

Commit

Permalink
fix names
Browse files Browse the repository at this point in the history
  • Loading branch information
srinathsetty committed Dec 30, 2024
1 parent 48eb8d7 commit e63f481
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/provider/pasta.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use ff::FromUniformBytes;
use halo2curves::{
group::{cofactor::CofactorCurveAffine, Curve, Group as AnotherGroup},
msm::msm_best,
pasta::{Pallas, PastaAffine as PallasAffine, Vesta, VestaAffine},
pasta::{Pallas, PallasAffine, Vesta, VestaAffine},
CurveAffine, CurveExt,
};
use num_bigint::BigInt;
Expand All @@ -20,7 +20,7 @@ use std::io::Read;

/// Re-exports that give access to the standard aliases used in the code base, for pallas
pub mod pallas {
pub use halo2curves::pasta::{Fp as Base, Fq as Scalar, Pallas as Point, PastaAffine as Affine};
pub use halo2curves::pasta::{Fp as Base, Fq as Scalar, Pallas as Point, PallasAffine as Affine};
}

/// Re-exports that give access to the standard aliases used in the code base, for vesta
Expand Down

0 comments on commit e63f481

Please sign in to comment.