Don't try to verify a non-existent wallet.dat

This commit is contained in:
Gavin Andresen 2012-10-05 19:26:54 -04:00
parent eed1785f70
commit d0b3e77a08
1 changed files with 12 additions and 9 deletions

View File

@ -507,6 +507,8 @@ bool AppInit2()
return false;
}
if (filesystem::exists(GetDataDir() / "wallet.dat"))
{
CDBEnv::VerifyResult r = bitdb.Verify("wallet.dat", CWalletDB::Recover);
if (r == CDBEnv::RECOVER_OK)
{
@ -518,6 +520,7 @@ bool AppInit2()
}
if (r == CDBEnv::RECOVER_FAIL)
return InitError(_("wallet.dat corrupt, salvage failed"));
}
// ********************************************************* Step 6: network initialization