fix sweep paper wallet flag - fix sweep process
This commit is contained in:
parent
d6d54a4e35
commit
e16e93e408
5 changed files with 121 additions and 76 deletions
10
src/js/controllers/preferencesAdvancedController.js
Normal file
10
src/js/controllers/preferencesAdvancedController.js
Normal 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);
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue