BlockchainLMDB: Add sanity check for inconsistent state

This hasn't been known to occur in block-level txn abort, but throw
exception if it does.
pull/95/head
warptangent 8 years ago
parent 9118d0a44c
commit c16cc204d3
No known key found for this signature in database
GPG Key ID: 0E490BEBFBE4E92D

@ -2233,8 +2233,19 @@ void BlockchainLMDB::block_txn_abort()
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
if (! m_batch_active)
{
delete m_write_txn;
m_write_txn = nullptr;
if (m_write_txn != nullptr)
{
delete m_write_txn;
m_write_txn = nullptr;
}
else
{
// This would probably mean an earlier exception was caught, but then we
// proceeded further than we should have.
throw0(DB_ERROR((std::string("BlockchainLMDB::") + __func__ +
std::string(": block-level DB transaction abort called when write txn doesn't exist")
).c_str()));
}
}
}

Loading…
Cancel
Save