mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-17 13:07:54 +02:00
refactor: remove unused param from legacy pubkey
This commit is contained in:
parent
db03248070
commit
1869310f3c
2 changed files with 5 additions and 5 deletions
|
|
@ -1385,10 +1385,10 @@ void LegacyScriptPubKeyMan::ReturnDestination(int64_t nIndex, bool fInternal, co
|
|||
WalletLogPrintf("keypool return %d\n", nIndex);
|
||||
}
|
||||
|
||||
bool LegacyScriptPubKeyMan::GetKeyFromPool(CPubKey& result, const OutputType type, bool internal)
|
||||
bool LegacyScriptPubKeyMan::GetKeyFromPool(CPubKey& result, const OutputType type)
|
||||
{
|
||||
assert(type != OutputType::BECH32M);
|
||||
if (!CanGetAddresses(internal)) {
|
||||
if (!CanGetAddresses(/*internal=*/ false)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
@ -1396,10 +1396,10 @@ bool LegacyScriptPubKeyMan::GetKeyFromPool(CPubKey& result, const OutputType typ
|
|||
{
|
||||
LOCK(cs_KeyStore);
|
||||
int64_t nIndex;
|
||||
if (!ReserveKeyFromKeyPool(nIndex, keypool, internal) && !m_storage.IsWalletFlagSet(WALLET_FLAG_DISABLE_PRIVATE_KEYS)) {
|
||||
if (!ReserveKeyFromKeyPool(nIndex, keypool, /*fRequestedInternal=*/ false) && !m_storage.IsWalletFlagSet(WALLET_FLAG_DISABLE_PRIVATE_KEYS)) {
|
||||
if (m_storage.IsLocked()) return false;
|
||||
WalletBatch batch(m_storage.GetDatabase());
|
||||
result = GenerateNewKey(batch, m_hd_chain, internal);
|
||||
result = GenerateNewKey(batch, m_hd_chain, /*internal=*/ false);
|
||||
return true;
|
||||
}
|
||||
KeepDestination(nIndex, type);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue