Browse Source

Fix Build in GetReservedKey() in wallet.cpp

miguelfreitas
Matt Corallo 14 years ago
parent
commit
a2606bad09
  1. 2
      src/wallet.cpp

2
src/wallet.cpp

@ -1325,7 +1325,7 @@ vector<unsigned char> CReserveKey::GetReservedKey() @@ -1325,7 +1325,7 @@ vector<unsigned char> CReserveKey::GetReservedKey()
else
{
printf("CReserveKey::GetReservedKey(): Warning: using default key instead of a new key, top up your keypool.");
vchPubKey = vchDefaultKey;
vchPubKey = pwallet->vchDefaultKey;
}
}
assert(!vchPubKey.empty());

Loading…
Cancel
Save