From 501e8ce7384e251d940e55fcb8cb65bcb57790bc Mon Sep 17 00:00:00 2001 From: Sebastiaan Pasma Date: Fri, 13 Jul 2018 14:02:48 +0200 Subject: [PATCH] Only show "from"-wallets with balance --- src/js/controllers/tab-send.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/js/controllers/tab-send.js b/src/js/controllers/tab-send.js index e0806816b..c13a27f7e 100644 --- a/src/js/controllers/tab-send.js +++ b/src/js/controllers/tab-send.js @@ -119,7 +119,8 @@ angular.module('copayApp.controllers').controller('tabSendController', function( var hasWallets = function() { $scope.wallets = profileService.getWallets({ - onlyComplete: true + onlyComplete: true, + hasFunds: true }); $scope.walletsBch = profileService.getWallets({ onlyComplete: true,