mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-23 10:37:37 -07:00
missing '.at' on two map calls. built on some machines, very strange...
This commit is contained in:
parent
e89949c766
commit
8661f9a970
@ -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 New Issue
Block a user