Skip to content

Commit

Permalink
Merge pull request bitcoin#411 from TheBlueMatt/master
Browse files Browse the repository at this point in the history
Fix Build in GetReservedKey() in wallet.cpp
  • Loading branch information
gavinandresen committed Jul 14, 2011
2 parents 3fd18fa + a2606ba commit 36cd1ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wallet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit 36cd1ad

Please sign in to comment.