wallet empty/no wallet fixes
This commit is contained in:
parent
358ae5842c
commit
00b4ee5849
2 changed files with 5 additions and 2 deletions
|
|
@ -116,10 +116,13 @@ angular.module('copayApp.controllers').controller('tabSendController', function(
|
|||
};
|
||||
|
||||
var hasWallets = function() {
|
||||
$scope.wallets = profileService.getWallets({
|
||||
$scope.walletsWithFunds = profileService.getWallets({
|
||||
onlyComplete: true,
|
||||
hasFunds: true
|
||||
});
|
||||
$scope.wallets = profileService.getWallets({
|
||||
onlyComplete: true,
|
||||
});
|
||||
$scope.walletsBch = profileService.getWallets({
|
||||
onlyComplete: true,
|
||||
coin: 'bch'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue