diff --git a/lib/utils/util.js b/lib/utils/util.js index de43bb97..63eb65ec 100644 --- a/lib/utils/util.js +++ b/lib/utils/util.js @@ -861,7 +861,8 @@ util.memoryUsage = function memoryUsage() { util.toFixed = function toFixed(num, exp) { assert(typeof num === 'number'); - assert(Number.isSafeInteger(num), 'Invalid integer value.'); + // The max Flo is 160m, which when you count the satoshis of, it is larger than the max safe integer value + // assert(Number.isSafeInteger(num), 'Invalid integer value.'); let sign = '';