diff options
author | Riccardo Spagni <ric@spagni.net> | 2019-04-01 17:19:32 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2019-04-01 17:19:32 +0200 |
commit | 7ec799c54291ef0197a572c877b4d9fa93060fb9 (patch) | |
tree | 5a891f6bf52887c033ef6ab8b3a630be4df00735 /src | |
parent | Merge pull request #5239 (diff) | |
parent | ringct: fix capitalization for scaler mult (diff) | |
download | monero-7ec799c54291ef0197a572c877b4d9fa93060fb9.tar.xz |
Merge pull request #5287
1d14b3f0 ringct: fix capitalization for scaler mult (fuwa)
Diffstat (limited to 'src')
-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 |