diff --git a/utils/bignumber.js b/utils/bignumber.js index ed0cdf5f..8926ac9d 100644 --- a/utils/bignumber.js +++ b/utils/bignumber.js @@ -110,8 +110,9 @@ defineProperty(BigNumber.prototype, 'toNumber', function(base) { return this._bn.toNumber(); }); -defineProperty(BigNumber.prototype, 'toString', function(base) { - return this._bn.toString(base || 10); +defineProperty(BigNumber.prototype, 'toString', function() { + //return this._bn.toString(base || 10); + return this._bn.toString(10); }); defineProperty(BigNumber.prototype, 'toHexString', function() {