diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-08-17 21:39:44 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-08-17 21:39:44 +0200 |
commit | 4466b6d1b08d827f3bdddb1cab8ca05833b65437 (patch) | |
tree | 3e86342c3194fddb5fac2b5f51b33bcf55ec887a /src/common | |
parent | Merge pull request #2301 (diff) | |
parent | cryptonote_protocol: large block sync size before v4 (diff) | |
download | monero-4466b6d1b08d827f3bdddb1cab8ca05833b65437.tar.xz |
Merge pull request #2303
5a283078 cryptonote_protocol: large block sync size before v4 (moneromooo-monero)
7b747607 cryptonote_protocol: kick idle synchronizing peers (moneromooo-monero)
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/command_line.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/command_line.cpp b/src/common/command_line.cpp index 5f60bef89..925d8ff3b 100644 --- a/src/common/command_line.cpp +++ b/src/common/command_line.cpp @@ -129,8 +129,8 @@ namespace command_line }; const command_line::arg_descriptor<size_t> arg_block_sync_size = { "block-sync-size" - , "How many blocks to sync at once during chain synchronization." - , BLOCKS_SYNCHRONIZING_DEFAULT_COUNT + , "How many blocks to sync at once during chain synchronization (0 = adaptive)." + , 0 }; const command_line::arg_descriptor<std::string> arg_check_updates = { "check-updates" |