wizard: allow restoring legacy seeds without checksum word

This commit is contained in:
tobtoht 2024-03-13 14:28:16 +01:00
parent 52a69a454e
commit f8e8deb276
No known key found for this signature in database
GPG key ID: E45B10DD027D2472
3 changed files with 17 additions and 6 deletions

View file

@ -64,8 +64,13 @@ Seed::Seed(Type type, QStringList mnemonic, NetworkType::Type networkType)
: type(type), mnemonic(std::move(mnemonic)), networkType(networkType)
{
if (m_seedLength[this->type] != this->mnemonic.length()) {
this->errorString = "Invalid seed length";
return;
if (this->type == Seed::Type::MONERO && this->mnemonic.length() == 24) {
qDebug() << "Loaded legacy seed without checksum";
}
else {
this->errorString = "Invalid seed length";
return;
}
}
if (this->type == Type::POLYSEED) {

View file

@ -43,6 +43,7 @@ PageWalletRestoreSeed::PageWalletRestoreSeed(WizardFields *fields, QWidget *pare
for (int i = 0; i != 2048; i++)
bip39English << QString::fromStdString(wordlist::english.get_word(i));
m_polyseed.type = Seed::Type::POLYSEED;
m_polyseed.length = 16;
m_polyseed.setWords(bip39English);
@ -50,9 +51,11 @@ PageWalletRestoreSeed::PageWalletRestoreSeed(WizardFields *fields, QWidget *pare
// (illegible word with a known location). This can be tested by replacing a word with xxxx
bip39English << "xxxx";
m_tevador.type = Seed::Type::TEVADOR;
m_tevador.length = 14;
m_tevador.setWords(bip39English);
m_legacy.type = Seed::Type::MONERO;
m_legacy.length = 25;
m_legacy.setWords(m_wordlists["English"]);
ui->combo_seedLanguage->setCurrentText("English");
@ -163,10 +166,12 @@ bool PageWalletRestoreSeed::validatePage() {
QStringList seedSplit = seed.split(" ", Qt::SkipEmptyParts);
if (seedSplit.length() != m_mode->length) {
ui->label_errorString->show();
ui->label_errorString->setText(QString("The mnemonic seed should be %1 words.").arg(m_mode->length));
ui->seedEdit->setStyleSheet(errStyle);
return false;
if (!(m_mode->type == Seed::Type::MONERO && seedSplit.length() == 24)) {
ui->label_errorString->show();
ui->label_errorString->setText(QString("The mnemonic seed should be %1 words.").arg(m_mode->length));
ui->seedEdit->setStyleSheet(errStyle);
return false;
}
}
// libwallet will accept e.g. "brötchen" or "BRÖTCHEN" instead of "Brötchen"

View file

@ -46,6 +46,7 @@ private:
QStringList words;
QStringListModel completerModel;
QCompleter completer;
Seed::Type type;
};
void onSeedTypeToggled();