fix log message

This commit is contained in:
Ivan Socolsky 2015-12-04 15:12:43 -03:00
parent 611b5e53d3
commit cb677303b6
1 changed files with 1 additions and 1 deletions

View File

@ -979,7 +979,7 @@ WalletService.prototype.getBalance = function(opts, cb) {
self._computeBytesToSendMax(utxos, function(err, size) {
if (err) {
log.error('Could not compute fees needed to transfer max amount', err);
log.error('Could not compute size of send max transaction', err);
}
balance.totalBytesToSendMax = size || 0;
return cb(null, balance);