diff --git a/src/groups/curves/twisted_edwards/mod.rs b/src/groups/curves/twisted_edwards/mod.rs index f7dbd93..789cb59 100644 --- a/src/groups/curves/twisted_edwards/mod.rs +++ b/src/groups/curves/twisted_edwards/mod.rs @@ -38,7 +38,7 @@ pub struct MontgomeryAffineVar< mod montgomery_affine_impl { use super::*; - use ark_ec::twisted_edwards::Affine as GroupAffine; + use ark_ec::twisted_edwards::MontgomeryAffine as GroupAffine; use ark_ff::Field; use core::ops::Add; @@ -83,8 +83,8 @@ mod montgomery_affine_impl { pub fn from_edwards_to_coords( p: &TEAffine
, ) -> Result<(P::BaseField, P::BaseField), SynthesisError> { - let montgomery_point: GroupAffine
= if p.y == P::BaseField::one() {
- GroupAffine::identity()
+ let montgomery_point: GroupAffine