diff --git a/src/js/controllers/wallet-selector.controller.js b/src/js/controllers/wallet-selector.controller.js index 3fe10b931..c0210213f 100644 --- a/src/js/controllers/wallet-selector.controller.js +++ b/src/js/controllers/wallet-selector.controller.js @@ -123,6 +123,7 @@ angular.module('copayApp.controllers').controller('walletSelectorController', fu walletsAll.forEach(function forWallet(wallet) { if (!wallet.status) { walletService.getStatus(wallet, {}, function(err, status) { + wallet.status = status; if (status.availableBalanceSat > ($scope.params.amount ? $scope.params.amount : 0)) { walletsSufficientFunds.push(wallet); } else {