Browse Source

strip feePerKB

activeAddress
Ivan Socolsky 10 years ago
parent
commit
38868319b9
  1. 2
      lib/server.js

2
lib/server.js

@ -769,7 +769,7 @@ WalletService.prototype._sampleFeeLevels = function(network, points, cb) {
if (feePerKB < 0) {
log.warn('Could not compute fee estimation (nbBlocks=' + p + ')');
}
return next(null, [p, feePerKB * 1e8]);
return next(null, [p, Utils.strip(feePerKB * 1e8)]);
});
}, function(err, results) {
if (err) return cb(err);

Loading…
Cancel
Save