diff --git a/js/controllers/homeWallet.js b/js/controllers/homeWallet.js index b5ab79eb6..c9ac95d22 100644 --- a/js/controllers/homeWallet.js +++ b/js/controllers/homeWallet.js @@ -1,19 +1,10 @@ 'use strict'; -var watching; angular.module('copayApp.controllers').controller('HomeWalletController', function($scope, $rootScope, $timeout, $filter, $modal, rateService, notification, txStatus, identityService) { $scope.initHome = function() { $rootScope.title = 'Home'; - if (!watching) { - watching = $rootScope.$watch('wallet', function (w) { - $scope.isShared = w.isShared(); - $scope.requiresMultipleSignatures = w.requiresMultipleSignatures(); - if ($scope.isShared) - $scope.copayers = w.getRegisteredPeerIds(); - }); - } - }; + }; $scope.openTxModal = function(tx) { var ModalInstanceCtrl = function($scope, $modalInstance) { diff --git a/views/homeWallet.html b/views/homeWallet.html index 88ce1f7fb..c7ff79897 100644 --- a/views/homeWallet.html +++ b/views/homeWallet.html @@ -37,8 +37,8 @@