core: early out in handle_incoming_tx if already in pool or blockchain

pull/95/head
moneromooo-monero 8 years ago
parent 6cc7d26140
commit 7c3f79cb9f
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -496,6 +496,18 @@ namespace cryptonote
return false;
}
if(m_mempool.have_tx(tx_hash))
{
LOG_PRINT_L2("tx " << tx_hash << "already have transaction in tx_pool");
return true;
}
if(m_blockchain_storage.have_tx(tx_hash))
{
LOG_PRINT_L2("tx " << tx_hash << " already have transaction in blockchain");
return true;
}
if(!check_tx_syntax(tx))
{
LOG_PRINT_L1("WRONG TRANSACTION BLOB, Failed to check tx " << tx_hash << " syntax, rejected");

Loading…
Cancel
Save