Merge pull request #1962

05f0f82 Save wallet password (xmrdsc)
pull/2/head
luigi1111 5 years ago
commit 0a5e87d007
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

@ -310,7 +310,7 @@ Rectangle {
oshelper.removeTemporaryWallet(wizardController.tmpWalletFilename)
// protecting wallet with password
wizardController.m_wallet.setPassword(walletOptionsPassword);
wizardController.m_wallet.setPassword(wizardController.walletOptionsPassword);
// Store password in session to be able to use password protected functions (e.g show seed)
appWindow.walletPassword = walletOptionsPassword

@ -69,6 +69,8 @@ Rectangle {
}
}
onNextClicked: {
wizardController.walletOptionsPassword = passwordFields.password;
if(appWindow.walletMode === 0 || appWindow.walletMode === 1){
wizardController.fetchRemoteNodes(function(){
wizardStateView.state = "wizardCreateWallet4";

@ -68,6 +68,8 @@ Rectangle {
wizardStateView.state = "wizardRestoreWallet1";
}
onNextClicked: {
wizardController.walletOptionsPassword = passwordFields.password;
if(appWindow.walletMode === 0 || appWindow.walletMode === 1){
wizardController.fetchRemoteNodes(function(){
wizardStateView.state = "wizardRestoreWallet4";