From 5dfd447a328eb4432ffc74c6eb6192ffde4fa7b2 Mon Sep 17 00:00:00 2001 From: Kadir Sekha Date: Mon, 4 Dec 2017 14:28:37 +0900 Subject: [PATCH] hide amount too low to spend for bch --- src/js/controllers/tx-details.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/js/controllers/tx-details.js b/src/js/controllers/tx-details.js index c5f01a111..6a507d4e7 100644 --- a/src/js/controllers/tx-details.js +++ b/src/js/controllers/tx-details.js @@ -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() {