fix tx-details
This commit is contained in:
parent
d6e4a70cdc
commit
0890f9e5e5
2 changed files with 11 additions and 6 deletions
|
|
@ -118,12 +118,17 @@ angular.module('copayApp.controllers').controller('txDetailsController', functio
|
||||||
initActionList();
|
initActionList();
|
||||||
getFiatRate();
|
getFiatRate();
|
||||||
|
|
||||||
feeService.getLowAmount($scope.wallet, function(err, amount) {
|
feeService.getFeeLevels(function(err, levels) {
|
||||||
$scope.btx.lowAmount = tx.amount< amount;
|
if (err) return;
|
||||||
});
|
walletService.getLowAmount($scope.wallet, levels, function(err, amount) {
|
||||||
|
if (err) return;
|
||||||
|
$scope.btx.lowAmount = tx.amount < amount;
|
||||||
|
|
||||||
$timeout(function() {
|
$timeout(function() {
|
||||||
$scope.$apply();
|
$scope.$apply();
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -91,7 +91,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="item" >
|
<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">
|
<div class="addr-path">
|
||||||
{{minFeePer}} [{{minFee}}]
|
{{minFeePer}} [{{minFee}}]
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue