hide amount too low to spend for bch

This commit is contained in:
Kadir Sekha 2017-12-04 14:28:37 +09:00
commit 5dfd447a32

View file

@ -139,6 +139,8 @@ angular.module('copayApp.controllers').controller('txDetailsController', functio
if (err) return;
walletService.getLowAmount($scope.wallet, levels, function(err, amount) {
if (err) return;
if ($scope.wallet.coin == 'bch') return;
$scope.btx.lowAmount = tx.amount < amount;
$timeout(function() {