hide amount too low to spend for bch
This commit is contained in:
parent
c3bcb0fb10
commit
5dfd447a32
1 changed files with 2 additions and 0 deletions
|
|
@ -139,6 +139,8 @@ angular.module('copayApp.controllers').controller('txDetailsController', functio
|
||||||
if (err) return;
|
if (err) return;
|
||||||
walletService.getLowAmount($scope.wallet, levels, function(err, amount) {
|
walletService.getLowAmount($scope.wallet, levels, function(err, amount) {
|
||||||
if (err) return;
|
if (err) return;
|
||||||
|
if ($scope.wallet.coin == 'bch') return;
|
||||||
|
|
||||||
$scope.btx.lowAmount = tx.amount < amount;
|
$scope.btx.lowAmount = tx.amount < amount;
|
||||||
|
|
||||||
$timeout(function() {
|
$timeout(function() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue