diff options
| author | xiphon <xiphon@protonmail.com> | 2020-04-26 02:23:51 +0000 |
|---|---|---|
| committer | xiphon <xiphon@protonmail.com> | 2020-04-28 20:36:22 +0000 |
| commit | cfdba59584d434e38407569441f4f518dd9507fa (patch) | |
| tree | 5e971ed434929a8ede78877fa8cfcbc23f7a97cb /wizard/WizardRestoreWallet4.qml | |
| parent | 4141832a4d948d7a85cf53c35c167b88a2441219 (diff) | |
| download | monzero-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.qml | 5 |
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(); + }); } } } |
