Fix #1824 don't end batch that we didn't start
This commit is contained in:
parent
4e92ef4aa4
commit
296641e047
|
@ -222,7 +222,7 @@ bool HardFork::reorganize_from_block_height(uint64_t height)
|
|||
return false;
|
||||
|
||||
db.set_batch_transactions(true);
|
||||
db.batch_start();
|
||||
bool stop_batch = db.batch_start();
|
||||
|
||||
versions.clear();
|
||||
|
||||
|
@ -250,6 +250,7 @@ bool HardFork::reorganize_from_block_height(uint64_t height)
|
|||
add(db.get_block_from_height(h), h);
|
||||
}
|
||||
|
||||
if (stop_batch)
|
||||
db.batch_stop();
|
||||
|
||||
return true;
|
||||
|
|
Loading…
Reference in New Issue