db_lmdb: avoid pointless division

release-v0.5.0
moneromooo-monero 6 years ago committed by wowario
parent 1b0fe29ee3
commit f97b2edb3c
No known key found for this signature in database
GPG Key ID: 24DCBE762DE9C111

@ -3168,7 +3168,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…
Cancel
Save