aboutsummaryrefslogtreecommitdiff
path: root/wizard
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2021-04-22 01:56:39 -0400
committerluigi1111 <luigi1111w@gmail.com>2021-04-22 01:56:39 -0400
commit4ddc6b1c9067aa977c6d0e2592995e0719e675d2 (patch)
tree4b8bac0cebc0afd476dcd6c6c0cbdfbfc4c99767 /wizard
parent46bc94fbe8dcf642996e17f643217405cb5529a4 (diff)
parentbecc74714b51e43fd71314701fba35bdab3af5a1 (diff)
downloadmonzero-gui-4ddc6b1c9067aa977c6d0e2592995e0719e675d2.tar.gz
monzero-gui-4ddc6b1c9067aa977c6d0e2592995e0719e675d2.tar.xz
monzero-gui-4ddc6b1c9067aa977c6d0e2592995e0719e675d2.zip
Merge pull request #3420
becc747 WalletManager: support kdf round in device wallet restore (selsta)
Diffstat (limited to 'wizard')
-rw-r--r--wizard/WizardController.qml3
1 files changed, 2 insertions, 1 deletions
diff --git a/wizard/WizardController.qml b/wizard/WizardController.qml
index 7467fb3d..ba5266e0 100644
--- a/wizard/WizardController.qml
+++ b/wizard/WizardController.qml
@@ -450,12 +450,13 @@ Rectangle {
tmpWalletFilename = oshelper.temporaryFilename();
console.log("Creating temporary wallet", tmpWalletFilename)
var nettype = persistentSettings.nettype;
+ var kdfRounds = persistentSettings.kdfRounds;
var restoreHeight = wizardController.walletOptionsRestoreHeight;
var subaddressLookahead = wizardController.walletOptionsSubaddressLookahead;
var deviceName = wizardController.walletOptionsDeviceName;
connect();
- walletManager.createWalletFromDeviceAsync(tmpWalletFilename, "", nettype, deviceName, restoreHeight, subaddressLookahead);
+ walletManager.createWalletFromDeviceAsync(tmpWalletFilename, "", nettype, deviceName, restoreHeight, subaddressLookahead, kdfRounds);
creatingWalletDeviceSplash();
}