aboutsummaryrefslogtreecommitdiff
path: root/wizard/WizardRestoreWallet4.qml
diff options
context:
space:
mode:
authorxiphon <xiphon@protonmail.com>2020-04-26 02:23:51 +0000
committerxiphon <xiphon@protonmail.com>2020-04-28 20:36:22 +0000
commitcfdba59584d434e38407569441f4f518dd9507fa (patch)
tree5e971ed434929a8ede78877fa8cfcbc23f7a97cb /wizard/WizardRestoreWallet4.qml
parent4141832a4d948d7a85cf53c35c167b88a2441219 (diff)
downloadmonzero-gui-cfdba59584d434e38407569441f4f518dd9507fa.tar.gz
monzero-gui-cfdba59584d434e38407569441f4f518dd9507fa.tar.xz
monzero-gui-cfdba59584d434e38407569441f4f518dd9507fa.zip
Wallet: implement async wallet storing
Diffstat (limited to 'wizard/WizardRestoreWallet4.qml')
-rw-r--r--wizard/WizardRestoreWallet4.qml5
1 files changed, 3 insertions, 2 deletions
diff --git a/wizard/WizardRestoreWallet4.qml b/wizard/WizardRestoreWallet4.qml
index ac552b37..f4a0456c 100644
--- a/wizard/WizardRestoreWallet4.qml
+++ b/wizard/WizardRestoreWallet4.qml
@@ -78,8 +78,9 @@ Rectangle {
}
onNextClicked: {
wizardController.recoveryWallet();
- wizardController.writeWallet();
- wizardController.useMoneroClicked();
+ wizardController.writeWallet(function() {
+ wizardController.useMoneroClicked();
+ });
}
}
}