mirror of
https://github.com/feather-wallet/feather.git
synced 2024-12-22 19:49:28 +00:00
Fix restore from seed functionality
This commit is contained in:
parent
ad7b278508
commit
b114ef1710
2 changed files with 7 additions and 1 deletions
|
@ -530,6 +530,11 @@ void AppContext::createWallet(FeatherSeed seed, const QString &path, const QStri
|
|||
return;
|
||||
}
|
||||
|
||||
if(seed.mnemonicSeed.isEmpty()) {
|
||||
emit walletCreatedError("Mnemonic seed error. Failed to write wallet.");
|
||||
return;
|
||||
}
|
||||
|
||||
this->currentWallet = seed.writeWallet(this->walletManager, this->networkType, path, password, this->kdfRounds);
|
||||
if(this->currentWallet == nullptr) {
|
||||
emit walletCreatedError("Failed to write wallet");
|
||||
|
|
|
@ -53,7 +53,8 @@ WalletWizard::WalletWizard(AppContext *ctx, WalletWizard::Page startPage, QWidge
|
|||
}
|
||||
|
||||
void WalletWizard::createWallet() {
|
||||
auto mnemonicSeed = this->field("mnemonicSeed").toString();
|
||||
auto mnemonicRestoredSeed = this->field("mnemonicRestoredSeed").toString();
|
||||
auto mnemonicSeed = mnemonicRestoredSeed.isEmpty() ? this->field("mnemonicSeed").toString() : mnemonicRestoredSeed;
|
||||
const auto walletPath = this->field("walletPath").toString();
|
||||
const auto walletPasswd = this->field("walletPasswd").toString();
|
||||
auto restoreHeight = this->field("restoreHeight").toUInt();
|
||||
|
|
Loading…
Reference in a new issue