fix sweep paper wallet flag - fix sweep process

This commit is contained in:
Javier 2016-09-08 19:50:18 -03:00
commit e16e93e408
5 changed files with 121 additions and 76 deletions

View file

@ -0,0 +1,10 @@
'use strict';
angular.module('copayApp.controllers').controller('preferencesAdvancedController', function($scope, $timeout, $stateParams, profileService) {
var wallet = profileService.getWallet($stateParams.walletId);
$scope.network = wallet.network;
$timeout(function() {
$scope.$apply();
}, 1);
});