Only show "from"-wallets with balance
This commit is contained in:
parent
c515a080e5
commit
501e8ce738
1 changed files with 2 additions and 1 deletions
|
|
@ -119,7 +119,8 @@ angular.module('copayApp.controllers').controller('tabSendController', function(
|
||||||
|
|
||||||
var hasWallets = function() {
|
var hasWallets = function() {
|
||||||
$scope.wallets = profileService.getWallets({
|
$scope.wallets = profileService.getWallets({
|
||||||
onlyComplete: true
|
onlyComplete: true,
|
||||||
|
hasFunds: true
|
||||||
});
|
});
|
||||||
$scope.walletsBch = profileService.getWallets({
|
$scope.walletsBch = profileService.getWallets({
|
||||||
onlyComplete: true,
|
onlyComplete: true,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue