diff options
| author | stoffu <stoffu@protonmail.ch> | 2018-02-25 21:52:04 +0900 |
|---|---|---|
| committer | stoffu <stoffu@protonmail.ch> | 2018-02-25 21:52:04 +0900 |
| commit | 70d42ee328624a182f5d8d36cbd697bdca5aee6e (patch) | |
| tree | 81ec0a985d4e3e54803c3bd43de0543d13265c9f /wizard/WizardManageWalletUI.qml | |
| parent | 084c1c84f3e5b98732d16407085c1cbef7b677e2 (diff) | |
| download | monzero-gui-70d42ee328624a182f5d8d36cbd697bdca5aee6e.tar.gz monzero-gui-70d42ee328624a182f5d8d36cbd697bdca5aee6e.tar.xz monzero-gui-70d42ee328624a182f5d8d36cbd697bdca5aee6e.zip | |
Wizard: allow seed without checksum
Diffstat (limited to 'wizard/WizardManageWalletUI.qml')
| -rw-r--r-- | wizard/WizardManageWalletUI.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wizard/WizardManageWalletUI.qml b/wizard/WizardManageWalletUI.qml index 7c9fa536..7d2c789b 100644 --- a/wizard/WizardManageWalletUI.qml +++ b/wizard/WizardManageWalletUI.qml @@ -83,7 +83,7 @@ ColumnLayout { function checkSeed() { console.log("Checking seed") var wordsArray = Utils.lineBreaksToSpaces(uiItem.wordsTextItem.memoText).split(" "); - return wordsArray.length === 25 + return wordsArray.length === 25 || wordsArray.length === 24 } function updateFromQrCode(address, payment_id, amount, tx_description, recipient_name, extra_parameters) { |
