aboutsummaryrefslogtreecommitdiff
path: root/wizard/WizardCreateWallet4.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/WizardCreateWallet4.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/WizardCreateWallet4.qml')
-rw-r--r--wizard/WizardCreateWallet4.qml7
1 files changed, 4 insertions, 3 deletions
diff --git a/wizard/WizardCreateWallet4.qml b/wizard/WizardCreateWallet4.qml
index f28a0f4a..2fa410fe 100644
--- a/wizard/WizardCreateWallet4.qml
+++ b/wizard/WizardCreateWallet4.qml
@@ -77,9 +77,10 @@ Rectangle {
}
}
onNextClicked: {
- wizardController.writeWallet();
- wizardController.useMoneroClicked();
- wizardController.walletOptionsIsRecoveringFromDevice = false;
+ wizardController.writeWallet(function() {
+ wizardController.useMoneroClicked();
+ wizardController.walletOptionsIsRecoveringFromDevice = false;
+ });
}
}
}