Browse Source

Fix crashes when a wallet is locked and GetReservedKey() is called

0.8
Matt Corallo 13 years ago
parent
commit
0d7b28e52e
  1. 5
      src/wallet.cpp

5
src/wallet.cpp

@ -1320,7 +1320,10 @@ vector<unsigned char> CReserveKey::GetReservedKey() @@ -1320,7 +1320,10 @@ vector<unsigned char> CReserveKey::GetReservedKey()
{
CKeyPool keypool;
pwallet->ReserveKeyFromKeyPool(nIndex, keypool);
vchPubKey = keypool.vchPubKey;
if (nIndex != -1)
vchPubKey = keypool.vchPubKey;
else
vchPubKey = vchDefaultKey;
}
assert(!vchPubKey.empty());
return vchPubKey;

Loading…
Cancel
Save