diff options
author | fuwa <fuwa25519@protonmail.com> | 2019-03-14 15:05:04 +0800 |
---|---|---|
committer | fuwa <fuwa25519@protonmail.com> | 2019-03-25 13:00:14 +0800 |
commit | 1d14b3f07207a7af8c236cd6fa9f03b1477c2c0c (patch) | |
tree | 86be706bde68519c1fc2fec43df5bb3c52b7c83b /src/ringct/rctOps.cpp | |
parent | Merge pull request #5258 (diff) | |
download | monero-1d14b3f07207a7af8c236cd6fa9f03b1477c2c0c.tar.xz |
ringct: fix capitalization for scaler mult
Diffstat (limited to 'src/ringct/rctOps.cpp')
-rw-r--r-- | src/ringct/rctOps.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ringct/rctOps.cpp b/src/ringct/rctOps.cpp index e39ba16fd..b5499262f 100644 --- a/src/ringct/rctOps.cpp +++ b/src/ringct/rctOps.cpp @@ -408,10 +408,10 @@ namespace rct { return res; } - //Computes aL where L is the curve order - bool isInMainSubgroup(const key & a) { + //Computes lA where l is the curve order + bool isInMainSubgroup(const key & A) { ge_p3 p3; - return toPointCheckOrder(&p3, a.bytes); + return toPointCheckOrder(&p3, A.bytes); } //Curve addition / subtractions |