Skip partial backup on 1-1 wallet
This commit is contained in:
parent
4303b0beab
commit
cadd66812b
2 changed files with 4 additions and 2 deletions
|
|
@ -81,7 +81,9 @@ angular.module('copayApp.controllers').controller('SetupController',
|
|||
passphrase: passphrase,
|
||||
};
|
||||
var w = walletFactory.create(opts);
|
||||
backupService.download(w);
|
||||
if (w.totalCopayers > 1) {
|
||||
backupService.download(w);
|
||||
}
|
||||
controllerUtils.startNetwork(w, $scope);
|
||||
});
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue