diff --git a/src/js/controllers/tab-send.js b/src/js/controllers/tab-send.js index 5334efc50..b216891ca 100644 --- a/src/js/controllers/tab-send.js +++ b/src/js/controllers/tab-send.js @@ -113,7 +113,7 @@ angular.module('copayApp.controllers').controller('tabSendController', function( var updateHasFunds = function() { $scope.hasFunds = true; - if ($rootScope.everHasFunds) { + if ($rootScope.everHadFunds) { return; } @@ -139,7 +139,7 @@ angular.module('copayApp.controllers').controller('tabSendController', function( } walletsTotalBalance = walletsTotalBalance + status.availableBalanceSat; if (walletsTotalBalance > 0) { - $rootScope.everHasFunds = true; + $rootScope.everHadFunds = true; } if (index == wallets.length && walletsTotalBalance == 0) { $scope.hasFunds = false;