mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-08 10:31:50 -05:00
Implement ReturnDestination in DescriptorScriptPubKeyMan
This commit is contained in:
parent
f866957979
commit
586b57a9a6
1 changed files with 7 additions and 0 deletions
|
@ -1617,6 +1617,13 @@ bool DescriptorScriptPubKeyMan::GetReservedDestination(const OutputType type, bo
|
|||
|
||||
void DescriptorScriptPubKeyMan::ReturnDestination(int64_t index, bool internal, const CTxDestination& addr)
|
||||
{
|
||||
LOCK(cs_desc_man);
|
||||
// Only return when the index was the most recent
|
||||
if (m_wallet_descriptor.next_index - 1 == index) {
|
||||
m_wallet_descriptor.next_index--;
|
||||
}
|
||||
WalletBatch(m_storage.GetDatabase()).WriteDescriptor(GetID(), m_wallet_descriptor);
|
||||
NotifyCanGetAddressesChanged();
|
||||
}
|
||||
|
||||
std::map<CKeyID, CKey> DescriptorScriptPubKeyMan::GetKeys() const
|
||||
|
|
Loading…
Add table
Reference in a new issue