Merge pull request #4768

cf552c75 tx_pool: allow take_tx to work without m_txs_by_fee_and_receive_time (moneromooo-monero)
pull/127/head
Riccardo Spagni 6 years ago
commit 9827958f5e
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

@ -459,8 +459,6 @@ namespace cryptonote
CRITICAL_REGION_LOCAL1(m_blockchain);
auto sorted_it = find_tx_in_sorted_container(id);
if (sorted_it == m_txs_by_fee_and_receive_time.end())
return false;
try
{
@ -499,7 +497,8 @@ namespace cryptonote
return false;
}
m_txs_by_fee_and_receive_time.erase(sorted_it);
if (sorted_it != m_txs_by_fee_and_receive_time.end())
m_txs_by_fee_and_receive_time.erase(sorted_it);
++m_cookie;
return true;
}

Loading…
Cancel
Save