Merge pull request #6291 from matiu/bug/fee-refresh

fix refresh/fee
This commit is contained in:
Gustavo Maximiliano Cortez 2017-06-23 11:03:05 -03:00 committed by GitHub
commit 76c6a96e19
3 changed files with 10 additions and 8 deletions

View File

@ -276,11 +276,12 @@ angular.module('copayApp.controllers').controller('confirmController', function(
updateAmount();
showSendMaxWarning(sendMaxInfo);
}
refresh();
// txp already generated for this wallet?
if (tx.txp[wallet.id])
if (tx.txp[wallet.id]) {
refresh();
return cb();
}
getTxp(lodash.clone(tx), wallet, opts.dryRun, function(err, txp) {
if (err) return cb(err);
@ -297,6 +298,7 @@ angular.module('copayApp.controllers').controller('confirmController', function(
tx.txp[wallet.id] = txp;
$log.debug('Confirm. TX Fully Updated for wallet:' + wallet.id, tx);
refresh();
return cb();
});
@ -567,16 +569,16 @@ angular.module('copayApp.controllers').controller('confirmController', function(
};
scope.hideModal = function(customFeeLevel) {
scope.chooseFeeLevelModal.hide();
$log.debug('Custom fee level choosen:' + customFeeLevel + ' was:' + tx.feeLevel);
if (tx.feeLevel == customFeeLevel)
scope.chooseFeeLevelModal.hide();
return;
tx.feeLevel = customFeeLevel;
updateTx(tx, wallet, {
clearCache: true,
dryRun: true,
}, function() {
scope.chooseFeeLevelModal.hide();
});
};
};

View File

@ -46,7 +46,9 @@ angular.module('copayApp.controllers').controller('preferencesFeeController', fu
}
$scope.feeLevels = levels;
updateCurrentValues();
$scope.$apply();
$timeout(function() {
$scope.$apply();
});
});
};

View File

@ -56,9 +56,7 @@ angular.module('copayApp.services').factory('feeService', function($log, $timeou
root.getFeeLevels = function(cb) {
if (cache.updateTs > Date.now() - CACHE_TIME_TS * 1000) {
$timeout(function() {
return cb(null, cache.data, true);
}, 1);
return cb(null, cache.data, true);
}
var walletClient = bwcService.getClient();