mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
ringct: fix capitalization for scaler mult
This commit is contained in:
parent
1d1a02e9f9
commit
1d14b3f072
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue