aboutsummaryrefslogtreecommitdiff
path: root/wizard
diff options
context:
space:
mode:
Diffstat (limited to 'wizard')
-rw-r--r--wizard/WizardRestoreWallet1.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/wizard/WizardRestoreWallet1.qml b/wizard/WizardRestoreWallet1.qml
index 9ac92500..ad75f581 100644
--- a/wizard/WizardRestoreWallet1.qml
+++ b/wizard/WizardRestoreWallet1.qml
@@ -50,8 +50,8 @@ Rectangle {
if(wizardController.walletRestoreMode === "keys") {
return wizardWalletInput.verify() && wizardRestoreWallet1.verifyFromKeys();
} else if(wizardController.walletRestoreMode === "seed") {
- seedInput.error = seedInput.text && !Wizard.checkSeed(seedInput.text);
- return wizardWalletInput.verify() && seedInput.text && Wizard.checkSeed(seedInput.text);
+ seedInput.error = seedInput.text && !Wizard.checkSeed(seedInput.text.trim());
+ return wizardWalletInput.verify() && seedInput.text && Wizard.checkSeed(seedInput.text.trim());
}
return false;
@@ -306,7 +306,7 @@ Rectangle {
switch (wizardController.walletRestoreMode) {
case 'seed':
- wizardController.walletOptionsSeed = seedInput.text;
+ wizardController.walletOptionsSeed = seedInput.text.trim();
wizardController.walletOptionsSeedOffset = seedOffsetCheckbox.checked ? seedOffset.text : "";
break;
default: // walletRestoreMode = keys or qr