Merge pull request #782 from sipa/checkkeys
Check consistency of private keys
This commit is contained in:
commit
4c932cca6f
1 changed files with 2 additions and 0 deletions
|
@ -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…
Reference in a new issue