mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-23 07:52:25 +00:00
Merge pull request #509
3030e3e
wallet2: remove confirmed transactions from detached blocks (moneromooo-monero)
This commit is contained in:
commit
5275db0786
1 changed files with 8 additions and 0 deletions
|
@ -763,6 +763,14 @@ void wallet2::detach_blockchain(uint64_t height)
|
|||
++it;
|
||||
}
|
||||
|
||||
for (auto it = m_confirmed_txs.begin(); it != m_confirmed_txs.end(); )
|
||||
{
|
||||
if(height <= it->second.m_block_height)
|
||||
it = m_confirmed_txs.erase(it);
|
||||
else
|
||||
++it;
|
||||
}
|
||||
|
||||
LOG_PRINT_L0("Detached blockchain on height " << height << ", transfers detached " << transfers_detached << ", blocks detached " << blocks_detached);
|
||||
}
|
||||
//----------------------------------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in a new issue