blockchain: pop forked blocks only when DB is not read-only

pull/3919/head
stoffu 6 years ago
parent 8a7b3ff138
commit ace2edacb6
No known key found for this signature in database
GPG Key ID: 41DAB8343A9EC012

@ -444,7 +444,7 @@ bool Blockchain::init(BlockchainDB* db, const network_type nettype, bool offline
m_db->block_txn_stop();
uint64_t num_popped_blocks = 0;
while (true)
while (!m_db->is_read_only())
{
const uint64_t top_height = m_db->height() - 1;
const crypto::hash top_id = m_db->top_block_hash();

Loading…
Cancel
Save