Merge pull request #3609

08343aba tx_pool: fix loading with colliding key images (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2018-04-12 13:48:44 +02:00
commit a95461e76d
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD

View file

@ -1268,7 +1268,15 @@ namespace cryptonote
m_spent_key_images.clear();
m_txpool_size = 0;
std::vector<crypto::hash> remove;
bool r = m_blockchain.for_all_txpool_txes([this, &remove](const crypto::hash &txid, const txpool_tx_meta_t &meta, const cryptonote::blobdata *bd) {
// first add the not kept by block, then the kept by block,
// to avoid rejection due to key image collision
for (int pass = 0; pass < 2; ++pass)
{
const bool kept = pass == 1;
bool r = m_blockchain.for_all_txpool_txes([this, &remove, kept](const crypto::hash &txid, const txpool_tx_meta_t &meta, const cryptonote::blobdata *bd) {
if (!!kept != !!meta.kept_by_block)
return true;
cryptonote::transaction tx;
if (!parse_and_validate_tx_from_blob(*bd, tx))
{
@ -1286,6 +1294,7 @@ namespace cryptonote
}, true);
if (!r)
return false;
}
if (!remove.empty())
{
LockedTXN lock(m_blockchain);