From d1e7ca192d0aef9c5741c9a8d74ced6366b7a7dc Mon Sep 17 00:00:00 2001 From: roconnor-blockstream Date: Wed, 22 Mar 2023 22:01:01 -0400 Subject: [PATCH] Typo --- src/ecmult_impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ecmult_impl.h b/src/ecmult_impl.h index 3776fe73fc8b3..650fd54d68b6b 100644 --- a/src/ecmult_impl.h +++ b/src/ecmult_impl.h @@ -97,7 +97,7 @@ static void secp256k1_ecmult_odd_multiples_table(int n, secp256k1_ge *pre_a, sec secp256k1_gej_set_ge(&ai, &pre_a[0]); ai.z = a->z; - /* pre_a[0] is the point (a.x*C^2, a.y*C^3, a.z*C) which is equvalent to a. + /* pre_a[0] is the point (a.x*C^2, a.y*C^3, a.z*C) which is equivalent to a. * Set zr[0] to C, which is the ratio between the omitted z(pre_a[0]) value and a.z. */ zr[0] = d.z;