tx_pool: wrap tx meta updates in a LockedTXN

This commit is contained in:
moneromooo-monero 2017-08-29 16:35:19 +01:00
parent d8f402ad8f
commit ff1cdf30d7
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -859,6 +859,9 @@ namespace cryptonote
std::unordered_set<crypto::key_image> k_images;
LOG_PRINT_L2("Filling block template, median size " << median_size << ", " << m_txs_by_fee_and_receive_time.size() << " txes in the pool");
LockedTXN lock(m_blockchain);
auto sorted_it = m_txs_by_fee_and_receive_time.begin();
while (sorted_it != m_txs_by_fee_and_receive_time.end())
{