small fix bn128.js/_preparePairing/loopCount.neg()

This commit is contained in:
arnaucube 2018-11-01 20:23:57 +01:00
parent ddc27b4c35
commit 0e9f632c46

View File

@ -66,7 +66,7 @@ class BN128 {
// Set loopCountNeg
if (this.loopCount.isNegative()) {
this.loopCount = this.neg();
this.loopCount = this.loopCount.neg();
this.loopCountNeg = true;
} else {
this.loopCountNeg = false;