Fix tx-details

This commit is contained in:
Gustavo Maximiliano Cortez 2015-08-13 11:07:24 -03:00
commit 19d24e8084
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
2 changed files with 8 additions and 14 deletions

View file

@ -22,7 +22,7 @@ angular.module('copayApp.services').factory('feeService', function($log, profile
}
else {
fee = lodash.find(levels, { level: feeLevel }).feePerKB;
$log.debug('Dynamic fee for:' + feeLevel + ': ' + fee + ' SAT');
$log.debug('Dynamic fee: ' + feeLevel + ' ' + fee + ' SAT');
return cb(null, fee);
}
});