Split wallets from settings

This commit is contained in:
Gustavo Maximiliano Cortez 2017-10-05 17:13:26 -03:00
commit df557bf874
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
3 changed files with 29 additions and 17 deletions

View file

@ -6,7 +6,8 @@ angular.module('copayApp.controllers').controller('tabSettingsController', funct
$scope.currentLanguageName = uxLanguage.getCurrentLanguageName();
$scope.feeOpts = feeService.feeOpts;
$scope.currentFeeLevel = feeService.getCurrentFeeLevel();
$scope.wallets = profileService.getWallets();
$scope.walletsBtc = profileService.getWallets({ coin: 'btc' });
$scope.walletsBch = profileService.getWallets({ coin: 'bch' });
$scope.buyAndSellServices = buyAndSellService.getLinked();
configService.whenAvailable(function(config) {