Skip to content

Commit

Permalink
temporary disable jumboMulTo in BN#mulTo (#221)
Browse files Browse the repository at this point in the history
  • Loading branch information
fanatid authored Jul 27, 2019
1 parent 7ba7a8c commit f953de2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/bn.js
Original file line number Diff line number Diff line change
Expand Up @@ -1679,8 +1679,10 @@
}

function jumboMulTo (self, num, out) {
var fftm = new FFTM();
return fftm.mulp(self, num, out);
// Temporary disable, see https://github.com/indutny/bn.js/issues/211
// var fftm = new FFTM();
// return fftm.mulp(self, num, out);
return bigMulTo(self, num, out);
}

BN.prototype.mulTo = function mulTo (num, out) {
Expand Down

0 comments on commit f953de2

Please sign in to comment.