commit
54338c3859
3 changed files with 13 additions and 6 deletions
|
|
@ -118,12 +118,17 @@ angular.module('copayApp.controllers').controller('txDetailsController', functio
|
|||
initActionList();
|
||||
getFiatRate();
|
||||
|
||||
feeService.getLowAmount($scope.wallet, function(err, amount) {
|
||||
$scope.btx.lowAmount = tx.amount< amount;
|
||||
});
|
||||
feeService.getFeeLevels(function(err, levels) {
|
||||
if (err) return;
|
||||
walletService.getLowAmount($scope.wallet, levels, function(err, amount) {
|
||||
if (err) return;
|
||||
$scope.btx.lowAmount = tx.amount < amount;
|
||||
|
||||
$timeout(function() {
|
||||
$scope.$apply();
|
||||
$timeout(function() {
|
||||
$scope.$apply();
|
||||
});
|
||||
|
||||
});
|
||||
});
|
||||
});
|
||||
};
|
||||
|
|
|
|||
|
|
@ -53,7 +53,9 @@ angular.module('copayApp.controllers').controller('walletDetailsController', fun
|
|||
if (analyzeUtxosDone) return;
|
||||
|
||||
feeService.getFeeLevels(function(err, levels){
|
||||
if (err) return;
|
||||
walletService.getLowUtxos($scope.wallet, levels, function(err, resp){
|
||||
if (err || !resp) return;
|
||||
analyzeUtxosDone = true;
|
||||
$scope.lowUtxosWarning = resp.warning;
|
||||
});
|
||||
|
|
|
|||
|
|
@ -91,7 +91,7 @@
|
|||
</div>
|
||||
|
||||
<div class="item" >
|
||||
<span translate> Approximate fee to move all wallet's balance (with normal priority) </span>
|
||||
<span translate> Approximate Bitcoin network fee to transfer wallet's balance (with normal priority) </span>
|
||||
<div class="addr-path">
|
||||
{{minFeePer}} [{{minFee}}]
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue