set quick height for syncing

This commit is contained in:
wowario 2023-01-31 10:22:40 +03:00
parent 463de38ef5
commit 9c3fb6c243
No known key found for this signature in database
GPG Key ID: 793504B449C69220
1 changed files with 1 additions and 1 deletions

View File

@ -1220,7 +1220,7 @@ namespace cryptonote
//-----------------------------------------------------------------------------------------------
size_t core::get_block_sync_size(uint64_t height) const
{
static const uint64_t quick_height = m_nettype == TESTNET ? 801219 : m_nettype == MAINNET ? 1220516 : 0;
static const uint64_t quick_height = m_nettype == TESTNET ? 0 : m_nettype == MAINNET ? 53666 : 0;
size_t res = 0;
if (block_sync_size > 0)
res = block_sync_size;