Fix function name

This commit is contained in:
Gustavo Maximiliano Cortez 2017-06-22 16:49:24 -03:00
parent dfd3eeec54
commit b799ed43b1
No known key found for this signature in database
GPG Key ID: 15EDAD8D9F2EB1AF
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ angular.module('copayApp.services').factory('coinbaseService', function($http, $
root.getReductedAmountByFee = function(amount, cb) {
// Fee Normal for a single transaction (450 bytes)
var txNormalFeeKB = 450 / 1000;
feeService.getCurrentFeeValue(null, 'normal', function(err, feePerKB) {
feeService.getFeeRate(null, 'normal', function(err, feePerKB) {
if (err) return cb(err);
var feeBTC = (feePerKB * txNormalFeeKB / 100000000).toFixed(8);