1
0
Fork 0
mirror of https://git.wownero.com/wownero/wownero.git synced 2024-08-15 01:03:23 +00:00

BlockchainLMDB: Add check for open database to two functions

This commit is contained in:
warptangent 2015-02-18 20:52:44 -08:00
parent 58ecc58be1
commit b7a2d84919
No known key found for this signature in database
GPG key ID: 0E490BEBFBE4E92D

View file

@ -742,6 +742,7 @@ void BlockchainLMDB::close()
void BlockchainLMDB::sync()
{
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
check_open();
// Does nothing unless LMDB environment was opened with MDB_NOSYNC or in part
// MDB_NOMETASYNC. Force flush to be synchronous.
@ -1757,6 +1758,8 @@ uint64_t BlockchainLMDB::add_block( const block& blk
void BlockchainLMDB::pop_block(block& blk, std::vector<transaction>& txs)
{
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
check_open();
txn_safe txn;
if (! m_batch_active)
{