From 4dffcccf19eccee78cd47db16959a5845b3b7de7 Mon Sep 17 00:00:00 2001 From: Manuel Araoz Date: Thu, 4 Sep 2014 16:57:07 -0300 Subject: [PATCH] settings: works with 2-3 wallet --- js/controllers/more.js | 1 + js/models/core/Wallet.js | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/js/controllers/more.js b/js/controllers/more.js index cf619b6a9..5bd705d90 100644 --- a/js/controllers/more.js +++ b/js/controllers/more.js @@ -56,6 +56,7 @@ angular.module('copayApp.controllers').controller('MoreController', alternativeName: $scope.selectedAlternative.name, alternativeIsoCode: $scope.selectedAlternative.isoCode, }); + controllerUtils.updateBalance(); }; diff --git a/js/models/core/Wallet.js b/js/models/core/Wallet.js index eba2518c6..5fe1611da 100644 --- a/js/models/core/Wallet.js +++ b/js/models/core/Wallet.js @@ -834,8 +834,6 @@ Wallet.prototype.toObj = function() { addressBook: this.addressBook, lastTimestamp: this.lastTimestamp, }; - console.dir(walletObj); - console.trace(); return walletObj; };