Fix wallet encryption with compressed pubkeys

This commit is contained in:
Pieter Wuille 2012-02-11 16:35:13 +01:00
parent 26d9e2c19d
commit cd5ee3bbb4
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ bool CCryptoKeyStore::EncryptKeys(CKeyingMaterial& vMasterKeyIn)
BOOST_FOREACH(KeyMap::value_type& mKey, mapKeys)
{
CKey key;
if (!key.SetSecret(mKey.second.first, false))
if (!key.SetSecret(mKey.second.first, mKey.second.second))
return false;
const std::vector<unsigned char> vchPubKey = key.GetPubKey();
std::vector<unsigned char> vchCryptedSecret;