mirror of
https://github.com/monero-project/monero.git
synced 2025-12-12 15:50:28 -08:00
hardfork: use DB transactions when reorganizing
It speeds up a lot, which can be significant when reorganizing from the genesis block to create the hard fork data.
This commit is contained in:
@@ -177,8 +177,8 @@ bool HardFork::reorganize_from_block_height(uint64_t height)
|
||||
if (height >= db.height())
|
||||
return false;
|
||||
|
||||
//db.set_batch_transactions(true);
|
||||
//db.batch_start();
|
||||
db.set_batch_transactions(true);
|
||||
db.batch_start();
|
||||
|
||||
versions.clear();
|
||||
|
||||
@@ -211,7 +211,7 @@ bool HardFork::reorganize_from_block_height(uint64_t height)
|
||||
add(get_block_version(h), h);
|
||||
}
|
||||
|
||||
//db.batch_stop();
|
||||
db.batch_stop();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user