mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-27 11:43:26 -03:00
Merge pull request #411 from TheBlueMatt/master
Fix Build in GetReservedKey() in wallet.cpp
This commit is contained in:
commit
36cd1ad5c9
1 changed files with 1 additions and 1 deletions
|
@ -1325,7 +1325,7 @@ vector<unsigned char> CReserveKey::GetReservedKey()
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
printf("CReserveKey::GetReservedKey(): Warning: using default key instead of a new key, top up your keypool.");
|
printf("CReserveKey::GetReservedKey(): Warning: using default key instead of a new key, top up your keypool.");
|
||||||
vchPubKey = vchDefaultKey;
|
vchPubKey = pwallet->vchDefaultKey;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
assert(!vchPubKey.empty());
|
assert(!vchPubKey.empty());
|
||||||
|
|
Loading…
Add table
Reference in a new issue