mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
Merge pull request #4768
cf552c75
tx_pool: allow take_tx to work without m_txs_by_fee_and_receive_time (moneromooo-monero)
This commit is contained in:
commit
9827958f5e
@ -459,8 +459,6 @@ namespace cryptonote
|
|||||||
CRITICAL_REGION_LOCAL1(m_blockchain);
|
CRITICAL_REGION_LOCAL1(m_blockchain);
|
||||||
|
|
||||||
auto sorted_it = find_tx_in_sorted_container(id);
|
auto sorted_it = find_tx_in_sorted_container(id);
|
||||||
if (sorted_it == m_txs_by_fee_and_receive_time.end())
|
|
||||||
return false;
|
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@ -499,6 +497,7 @@ namespace cryptonote
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (sorted_it != m_txs_by_fee_and_receive_time.end())
|
||||||
m_txs_by_fee_and_receive_time.erase(sorted_it);
|
m_txs_by_fee_and_receive_time.erase(sorted_it);
|
||||||
++m_cookie;
|
++m_cookie;
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
Reference in New Issue
Block a user