mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-12 15:09:59 +01:00
[wallet] Add HasUnusedKeys() helper
This commit is contained in:
@@ -3611,6 +3611,11 @@ void CReserveKey::ReturnKey()
|
||||
vchPubKey = CPubKey();
|
||||
}
|
||||
|
||||
bool CWallet::HasUnusedKeys(int min_keys) const
|
||||
{
|
||||
return setExternalKeyPool.size() >= min_keys && (setInternalKeyPool.size() >= min_keys || !CanSupportFeature(FEATURE_HD_SPLIT));
|
||||
}
|
||||
|
||||
void CWallet::GetScriptForMining(std::shared_ptr<CReserveScript> &script)
|
||||
{
|
||||
std::shared_ptr<CReserveKey> rKey = std::make_shared<CReserveKey>(this);
|
||||
|
||||
Reference in New Issue
Block a user