cryptonote_protocol: internal error consistency size check

release-v0.4.0.1
moneromooo-monero 7 years ago
parent 7a9a4a6669
commit a2c845c7e3
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -1050,6 +1050,11 @@ skip:
num_txs += block_entry.txs.size();
std::vector<tx_verification_context> tvc;
m_core.handle_incoming_txs(block_entry.txs, tvc, true, true, false);
if (tvc.size() != block_entry.txs.size())
{
LOG_ERROR_CCONTEXT("Internal error: tvc.size() != block_entry.txs.size()");
return true;
}
std::list<blobdata>::const_iterator it = block_entry.txs.begin();
for (size_t i = 0; i < tvc.size(); ++i, ++it)
{

Loading…
Cancel
Save