Merge pull request #3787

ce63ab09 blockchain: invalidate misc caches when popping blocks (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2018-05-21 21:36:38 +02:00
commit f794d3b3df
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD
1 changed files with 6 additions and 0 deletions

View File

@ -631,6 +631,12 @@ block Blockchain::pop_block_from_blockchain()
}
}
}
m_blocks_longhash_table.clear();
m_scan_table.clear();
m_blocks_txs_check.clear();
m_check_txin_table.clear();
update_next_cumulative_size_limit();
m_tx_pool.on_blockchain_dec(m_db->height()-1, get_tail_id());