Merge pull request #3953 from cmgustavo/bug/fix-feelevels-01

Fix feelevels variable name
This commit is contained in:
Matias Alejo Garcia 2016-03-04 19:07:10 -03:00
commit f83fa9fc59
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ angular.module('copayApp.services').factory('feeService', function($log, profile
if (!feeLevelValue || ! feeLevelValue.feePerKB)
return cb({message: 'Could not get dynamic fee for level: ' + feeLevel});
var fee = feeLevel.feePerKB;
var fee = feeLevelValue.feePerKB;
$log.debug('Dynamic fee: ' + feeLevel + ' ' + fee + ' SAT');
return cb(null, fee);
});