Removes importLegacy. Enable Coinbase/Glidera for livenet. Fix undefined variable on buyCoinbase/Glidera

This commit is contained in:
Gustavo Maximiliano Cortez 2016-06-12 16:42:32 -03:00
commit 3776062e16
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
6 changed files with 4 additions and 177 deletions

View file

@ -8,7 +8,7 @@ angular.module('copayApp.controllers').controller('buyCoinbaseController',
this.init = function(testnet) {
self.allWallets = profileService.getWallets(testnet ? 'testnet' : 'livenet', 1)
client = profileService.focusedClient;
var client = profileService.focusedClient;
if (client) {
$timeout(function() {
self.selectedWalletId = client.credentials.walletId;

View file

@ -12,7 +12,7 @@ angular.module('copayApp.controllers').controller('buyGlideraController',
this.init = function(testnet) {
self.allWallets = profileService.getWallets(testnet ? 'testnet' : 'livenet', 1)
client = profileService.focusedClient;
var client = profileService.focusedClient;
if (client) {
$timeout(function() {
self.selectedWalletId = client.credentials.walletId;