diff options
| author | xiphon <xiphon@protonmail.com> | 2020-02-11 23:34:15 +0000 |
|---|---|---|
| committer | xiphon <xiphon@protonmail.com> | 2020-02-12 13:49:26 +0000 |
| commit | 48aab5c6e57f9e66ffec7cae0c1398ac767381f7 (patch) | |
| tree | 657215dc51279793b965a55bb5fd2897450112d8 /wizard/WizardController.qml | |
| parent | eb7fae92ef0ed01a1d17e56fac217c6450716ccc (diff) | |
| download | monzero-gui-48aab5c6e57f9e66ffec7cae0c1398ac767381f7.tar.gz monzero-gui-48aab5c6e57f9e66ffec7cae0c1398ac767381f7.tar.xz monzero-gui-48aab5c6e57f9e66ffec7cae0c1398ac767381f7.zip | |
WalletManager: wallet recovery - seed offset passphrase support
Diffstat (limited to 'wizard/WizardController.qml')
| -rw-r--r-- | wizard/WizardController.qml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/wizard/WizardController.qml b/wizard/WizardController.qml index d3157c3e..f71ae108 100644 --- a/wizard/WizardController.qml +++ b/wizard/WizardController.qml @@ -59,6 +59,7 @@ Rectangle { wizardController.walletOptionsLocation = ''; wizardController.walletOptionsPassword = ''; wizardController.walletOptionsSeed = ''; + wizardController.walletOptionsSeedOffset = ''; wizardController.walletOptionsRecoverAddress = '' wizardController.walletOptionsRecoverViewkey = '' wizardController.walletOptionsRecoverSpendkey = '' @@ -92,6 +93,7 @@ Rectangle { property string walletOptionsLocation: '' property string walletOptionsPassword: '' property string walletOptionsSeed: '' + property string walletOptionsSeedOffset: '' property string walletOptionsRecoverAddress: '' property string walletOptionsRecoverViewkey: '' property string walletOptionsRecoverSpendkey: '' @@ -394,7 +396,7 @@ Rectangle { var wallet = '' // From seed or keys if(wizardController.walletRestoreMode === 'seed') - wallet = walletManager.recoveryWallet(tmp_wallet_filename, wizardController.walletOptionsSeed, nettype, restoreHeight, kdfRounds) + wallet = walletManager.recoveryWallet(tmp_wallet_filename, wizardController.walletOptionsSeed, wizardController.walletOptionsSeedOffset, nettype, restoreHeight, kdfRounds); else wallet = walletManager.createWalletFromKeys(tmp_wallet_filename, wizardController.language_wallet, nettype, wizardController.walletOptionsRecoverAddress, wizardController.walletOptionsRecoverViewkey, |
