diff options
author | Howard Chu <hyc@symas.com> | 2016-08-29 16:42:52 +0100 |
---|---|---|
committer | Howard Chu <hyc@symas.com> | 2016-08-31 00:00:19 +0100 |
commit | b8c03a5f1035ca147eb52425bce9336909864296 (patch) | |
tree | 34720baccc65f6ecf602cf6b9527d140e1727159 /src/cryptonote_core/blockchain.cpp | |
parent | Merge pull request #1014 (diff) | |
download | monero-b8c03a5f1035ca147eb52425bce9336909864296.tar.xz |
Remove blocks_per_sync limits
The code used to cap at 5000 blocks per sync. It also treated 0 as 1.
Remove these checks; if specified as 0 do no periodic syncs at all.
Then the user is responsible for syncing in some external process.
Diffstat (limited to 'src/cryptonote_core/blockchain.cpp')
-rw-r--r-- | src/cryptonote_core/blockchain.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_core/blockchain.cpp b/src/cryptonote_core/blockchain.cpp index 07db59796..37bd6e810 100644 --- a/src/cryptonote_core/blockchain.cpp +++ b/src/cryptonote_core/blockchain.cpp @@ -3378,7 +3378,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) { |