mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
missing '.at' on two map calls. built on some machines, very strange...
This commit is contained in:
parent
e89949c766
commit
8661f9a970
1 changed files with 2 additions and 2 deletions
|
@ -50,8 +50,8 @@ namespace crypto
|
||||||
}
|
}
|
||||||
|
|
||||||
w1 = wordsMap.at(wlist[i*3]);
|
w1 = wordsMap.at(wlist[i*3]);
|
||||||
w2 = wordsMap(wlist[i*3 + 1]);
|
w2 = wordsMap.at(wlist[i*3 + 1]);
|
||||||
w3 = wordsMap(wlist[i*3 + 2]);
|
w3 = wordsMap.at(wlist[i*3 + 2]);
|
||||||
|
|
||||||
val = w1 + n * ((w2 - w1) % n) + n * n * ((w3 - w2) % n);
|
val = w1 + n * ((w2 - w1) % n) + n * n * ((w3 - w2) % n);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue