mirror of
https://github.com/monero-project/monero.git
synced 2025-08-06 08:14:22 -04:00
daemon: remove --fluffy-blocks
This commit is contained in:
parent
a2e8d1d427
commit
bb83eb151a
2 changed files with 0 additions and 10 deletions
|
@ -173,11 +173,6 @@ namespace cryptonote
|
|||
, "Check for new versions of monero: [disabled|notify|download|update]"
|
||||
, "notify"
|
||||
};
|
||||
static const command_line::arg_descriptor<bool> arg_fluffy_blocks = {
|
||||
"fluffy-blocks"
|
||||
, "Relay blocks as fluffy blocks (obsolete, now default)"
|
||||
, true
|
||||
};
|
||||
static const command_line::arg_descriptor<bool> arg_no_fluffy_blocks = {
|
||||
"no-fluffy-blocks"
|
||||
, "Relay blocks as normal blocks"
|
||||
|
@ -340,7 +335,6 @@ namespace cryptonote
|
|||
command_line::add_arg(desc, arg_show_time_stats);
|
||||
command_line::add_arg(desc, arg_block_sync_size);
|
||||
command_line::add_arg(desc, arg_check_updates);
|
||||
command_line::add_arg(desc, arg_fluffy_blocks);
|
||||
command_line::add_arg(desc, arg_no_fluffy_blocks);
|
||||
command_line::add_arg(desc, arg_test_dbg_lock_sleep);
|
||||
command_line::add_arg(desc, arg_offline);
|
||||
|
@ -393,9 +387,6 @@ namespace cryptonote
|
|||
m_offline = get_arg(vm, arg_offline);
|
||||
m_disable_dns_checkpoints = get_arg(vm, arg_disable_dns_checkpoints);
|
||||
|
||||
if (!command_line::is_arg_defaulted(vm, arg_fluffy_blocks))
|
||||
MWARNING(arg_fluffy_blocks.name << " is obsolete, it is now default");
|
||||
|
||||
if (command_line::get_arg(vm, arg_test_drop_download) == true)
|
||||
test_drop_download();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue