Skip to content

Commit 39e2547

Browse files
Minor change for clarity
1 parent 021bb79 commit 39e2547

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

extensions/ecc/guest/src/ed25519.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use num_bigint::BigUint;
88
use openvm_algebra_guest::IntMod;
99

1010
use super::group::{CyclicGroup, Group};
11-
use crate::{edwards::CachedMulTable, IntrinsicCurve};
11+
use crate::IntrinsicCurve;
1212

1313
#[cfg(not(target_os = "zkvm"))]
1414
lazy_static! {
@@ -76,7 +76,7 @@ impl IntrinsicCurve for Ed25519Point {
7676
for<'a> &'a Self::Point: Add<&'a Self::Point, Output = Self::Point>,
7777
{
7878
if coeffs.len() < 25 {
79-
let table = CachedMulTable::<Self>::new(bases, 4);
79+
let table = crate::edwards::CachedMulTable::<Self>::new(bases, 4);
8080
table.windowed_mul(coeffs)
8181
} else {
8282
crate::msm(coeffs, bases)

0 commit comments

Comments
 (0)