mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
db_lmdb: avoid pointless division
This commit is contained in:
parent
833269834d
commit
5511563e92
@ -3106,7 +3106,7 @@ uint64_t BlockchainLMDB::add_block(const block& blk, size_t block_weight, const
|
||||
check_open();
|
||||
uint64_t m_height = height();
|
||||
|
||||
if (m_height % 1000 == 0)
|
||||
if (m_height % 1024 == 0)
|
||||
{
|
||||
// for batch mode, DB resize check is done at start of batch transaction
|
||||
if (! m_batch_active && need_resize())
|
||||
|
Loading…
Reference in New Issue
Block a user