Skip to content

Commit

Permalink
Merge pull request #3953 from cmgustavo/bug/fix-feelevels-01
Browse files Browse the repository at this point in the history
Fix feelevels variable name
  • Loading branch information
matiu committed Mar 4, 2016
2 parents ec439f1 + 82e0358 commit f83fa9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/services/feeService.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});
Expand Down

0 comments on commit f83fa9f

Please sign in to comment.