mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
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,7 +250,8 @@ bool HardFork::reorganize_from_block_height(uint64_t height)
|
||||
add(db.get_block_from_height(h), h);
|
||||
}
|
||||
|
||||
db.batch_stop();
|
||||
if (stop_batch)
|
||||
db.batch_stop();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user