wallet: make KeypoolCountExternalKeys() const

This method returns the sum of the key pool sizes. It does no modification.
This commit is contained in:
Karl-Johan Alm
2020-03-02 16:33:45 +09:00
parent ddc93557ad
commit 037fa770eb
4 changed files with 5 additions and 5 deletions

View File

@@ -459,7 +459,7 @@ int64_t LegacyScriptPubKeyMan::GetOldestKeyPoolTime()
return oldestKey;
}
size_t LegacyScriptPubKeyMan::KeypoolCountExternalKeys()
size_t LegacyScriptPubKeyMan::KeypoolCountExternalKeys() const
{
LOCK(cs_KeyStore);
return setExternalKeyPool.size() + set_pre_split_keypool.size();