aboutsummaryrefslogtreecommitdiff
path: root/src/keystore.cpp
diff options
context:
space:
mode:
authorMatt Corallo <matt@bluematt.me>2011-07-27 18:02:39 +0200
committerMatt Corallo <matt@bluematt.me>2011-07-27 18:02:39 +0200
commit687c82558cc568f37eb1fb24bfb3c351e49d6735 (patch)
treeac5d0ee6dbc507af6958d202736bbbae1e651b98 /src/keystore.cpp
parenta139ed74f2a5764afbd678c0e4eb6143455a3a49 (diff)
downloadbitcoin-687c82558cc568f37eb1fb24bfb3c351e49d6735.tar.xz
Fix EncryptKeys crash introduced by a9ba4710, identified by TD.
Diffstat (limited to 'src/keystore.cpp')
-rw-r--r--src/keystore.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keystore.cpp b/src/keystore.cpp
index 2125d8472a..1828d6dddc 100644
--- a/src/keystore.cpp
+++ b/src/keystore.cpp
@@ -154,7 +154,7 @@ bool CCryptoKeyStore::EncryptKeys(CKeyingMaterial& vMasterKeyIn)
CKey key;
BOOST_FOREACH(KeyMap::value_type& mKey, mapKeys)
{
- if (!key.SetPrivKey(mKey.second))
+ if (!key.SetSecret(mKey.second))
return false;
const std::vector<unsigned char> vchPubKey = key.GetPubKey();
std::vector<unsigned char> vchCryptedSecret;