rm commented code

This commit is contained in:
Matias Alejo Garcia 2014-12-04 11:13:21 -03:00
parent 3edec5e597
commit baa44b0dfd
1 changed files with 0 additions and 8 deletions

View File

@ -2,14 +2,6 @@
angular.module('copayApp.controllers').controller('HomeWalletController', function($scope, $rootScope) {
$scope.init = function() {
$rootScope.title = 'Home';
// This is necesarry, since wallet can change in homeWallet, without running init() again.
// $rootScope.$watch('wallet', function() {
// if ($rootScope.wallet && $rootScope.wallet.isComplete()) {
// $scope.addr = _.last($rootScope.wallet.getReceiveAddresses());
// }
// });
};
});