do not show proposals on 1-of-N wallets

This commit is contained in:
Ivan Socolsky 2014-12-31 10:14:29 -03:00
commit 5cd5287baf
3 changed files with 4 additions and 3 deletions

View file

@ -5,6 +5,7 @@ angular.module('copayApp.controllers').controller('HomeWalletController', functi
$rootScope.title = 'Home';
var w = $rootScope.wallet;
$scope.isShared = w.isShared();
$scope.requiresMultipleSignatures = w.requiresMultipleSignatures();
if ($scope.isShared)
$scope.copayers = w.getRegisteredPeerIds();
};