Increase replay's writing to database threshold

This commit is contained in:
serkixenos 2021-12-16 22:27:34 -04:00
parent e828e7813c
commit f9a40c647e

View file

@ -123,7 +123,7 @@ void database::reindex( fc::path data_dir )
}
for( uint32_t i = head_block_num() + 1; i <= last_block_num; ++i )
{
if( i % 10000 == 0 )
if( i % 1000000 == 0 )
{
ilog( "Writing database to disk at block ${i}", ("i",i) );
flush();