diff options
| author | Jaquee <jaquee.monero@gmail.com> | 2017-01-29 18:55:57 +0100 |
|---|---|---|
| committer | Jaquee <jaquee.monero@gmail.com> | 2017-01-30 23:20:47 +0100 |
| commit | 04ff16ddb288d6b8ae6c7f4d4f74097bd700124b (patch) | |
| tree | 62787095ffcf6456c96c3ba280848ef33eaab4d2 | |
| parent | c5c2a40ef5726ffcbf3e887c88012f24987fce9e (diff) | |
| download | monzero-gui-04ff16ddb288d6b8ae6c7f4d4f74097bd700124b.tar.gz monzero-gui-04ff16ddb288d6b8ae6c7f4d4f74097bd700124b.tar.xz monzero-gui-04ff16ddb288d6b8ae6c7f4d4f74097bd700124b.zip | |
restore from keys: show error in popup
| -rw-r--r-- | wizard/WizardRecoveryWallet.qml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/wizard/WizardRecoveryWallet.qml b/wizard/WizardRecoveryWallet.qml index a41fe4a9..92e1e751 100644 --- a/wizard/WizardRecoveryWallet.qml +++ b/wizard/WizardRecoveryWallet.qml @@ -92,6 +92,9 @@ Item { settingsObject['is_recovering'] = true; settingsObject['tmp_wallet_filename'] = tmp_wallet_filename } else { + console.log(wallet.errorString) + walletErrorDialog.text = wallet.errorString; + walletErrorDialog.open(); walletManager.closeWallet(); } return success; |
