tx_pool: fix use of invalidated iterator

This commit is contained in:
moneromooo-monero 2016-01-29 16:49:53 +00:00
parent 3b1d7e03fc
commit eadbdf354a
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -315,7 +315,8 @@ namespace cryptonote
{ {
m_txs_by_fee.erase(sorted_it); m_txs_by_fee.erase(sorted_it);
} }
m_transactions.erase(it++); auto pit = it++;
m_transactions.erase(pit);
}else }else
++it; ++it;
} }