Merge pull request #410 from TheBlueMatt/master
Generate Warning when using default key.
This commit is contained in:
commit
3fd18faaf6
1 changed files with 3 additions and 0 deletions
|
@ -1323,7 +1323,10 @@ vector<unsigned char> CReserveKey::GetReservedKey()
|
||||||
if (nIndex != -1)
|
if (nIndex != -1)
|
||||||
vchPubKey = keypool.vchPubKey;
|
vchPubKey = keypool.vchPubKey;
|
||||||
else
|
else
|
||||||
|
{
|
||||||
|
printf("CReserveKey::GetReservedKey(): Warning: using default key instead of a new key, top up your keypool.");
|
||||||
vchPubKey = vchDefaultKey;
|
vchPubKey = vchDefaultKey;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
assert(!vchPubKey.empty());
|
assert(!vchPubKey.empty());
|
||||||
return vchPubKey;
|
return vchPubKey;
|
||||||
|
|
Loading…
Add table
Reference in a new issue