wallet2: remove confirmed transactions from detached blocks

This commit is contained in:
moneromooo-monero 2015-11-29 11:41:37 +00:00
parent 4061a32082
commit 3030e3ecff
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -685,6 +685,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);
}
//----------------------------------------------------------------------------------------------------