Merge pull request #782 from sipa/checkkeys

Check consistency of private keys
pull/2/merge
Gavin Andresen 13 years ago
commit 4c932cca6f

@ -862,6 +862,8 @@ int CWalletDB::LoadWallet(CWallet* pwallet)
ssValue >> pkey;
key.SetPubKey(vchPubKey);
key.SetPrivKey(pkey);
if (key.GetPubKey() != vchPubKey)
return DB_CORRUPT;
}
else
{

Loading…
Cancel
Save