mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Merge pull request #1022
b8c03a5
Remove blocks_per_sync limits (Howard Chu)
This commit is contained in:
commit
e0d78858e4
2 changed files with 5 additions and 6 deletions
|
@ -3374,7 +3374,7 @@ bool Blockchain::cleanup_handle_incoming_blocks(bool force_sync)
|
|||
store_blockchain();
|
||||
m_sync_counter = 0;
|
||||
}
|
||||
else if (m_sync_counter >= m_db_blocks_per_sync)
|
||||
else if (m_db_blocks_per_sync && m_sync_counter >= m_db_blocks_per_sync)
|
||||
{
|
||||
if(m_db_sync_mode == db_async)
|
||||
{
|
||||
|
|
|
@ -372,11 +372,10 @@ namespace cryptonote
|
|||
|
||||
if(options.size() >= 3 && !safemode)
|
||||
{
|
||||
blocks_per_sync = atoll(options[2].c_str());
|
||||
if(blocks_per_sync > 5000)
|
||||
blocks_per_sync = 5000;
|
||||
if(blocks_per_sync == 0)
|
||||
blocks_per_sync = 1;
|
||||
char *endptr;
|
||||
uint64_t bps = strtoull(options[2].c_str(), &endptr, 0);
|
||||
if (*endptr == '\0')
|
||||
blocks_per_sync = bps;
|
||||
}
|
||||
|
||||
bool auto_remove_logs = command_line::get_arg(vm, command_line::arg_db_auto_remove_logs) != 0;
|
||||
|
|
Loading…
Reference in a new issue