[Wallet] keep HD seed during salvagewallet

This commit is contained in:
Jonas Schnelli 2016-07-09 12:56:56 +02:00
parent 67caef6730
commit b993671921
No known key found for this signature in database
GPG Key ID: 29D4BCB6416F53EC
2 changed files with 2 additions and 2 deletions

View File

@ -3291,7 +3291,7 @@ bool CWallet::InitLoadWallet()
if (fFirstRun) if (fFirstRun)
{ {
// Create new keyUser and set as default key // Create new keyUser and set as default key
if (GetBoolArg("-usehd", DEFAULT_USE_HD_WALLET)) { if (GetBoolArg("-usehd", DEFAULT_USE_HD_WALLET) && walletInstance->hdChain.masterKeyID.IsNull()) {
// generate a new master key // generate a new master key
CKey key; CKey key;
key.MakeNewKey(true); key.MakeNewKey(true);

View File

@ -977,7 +977,7 @@ bool CWalletDB::Recover(CDBEnv& dbenv, const std::string& filename, bool fOnlyKe
fReadOK = ReadKeyValue(&dummyWallet, ssKey, ssValue, fReadOK = ReadKeyValue(&dummyWallet, ssKey, ssValue,
wss, strType, strErr); wss, strType, strErr);
} }
if (!IsKeyType(strType)) if (!IsKeyType(strType) && strType != "hdchain")
continue; continue;
if (!fReadOK) if (!fReadOK)
{ {