mirror of
https://codeberg.org/nahuhh/wownero
synced 2026-03-05 06:07:35 -05:00
blockchain: pop forked blocks only when DB is not read-only
This commit is contained in:
@@ -444,7 +444,7 @@ bool Blockchain::init(BlockchainDB* db, const network_type nettype, bool offline
|
|||||||
m_db->block_txn_stop();
|
m_db->block_txn_stop();
|
||||||
|
|
||||||
uint64_t num_popped_blocks = 0;
|
uint64_t num_popped_blocks = 0;
|
||||||
while (true)
|
while (!m_db->is_read_only())
|
||||||
{
|
{
|
||||||
const uint64_t top_height = m_db->height() - 1;
|
const uint64_t top_height = m_db->height() - 1;
|
||||||
const crypto::hash top_id = m_db->top_block_hash();
|
const crypto::hash top_id = m_db->top_block_hash();
|
||||||
|
|||||||
Reference in New Issue
Block a user