Browse Source

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

master
arnaucube 5 years ago
parent
commit
0e9f632c46
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/bn128.js

+ 1
- 1
src/bn128.js

@ -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;

Loading…
Cancel
Save