aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2023-06-27 11:41:57 -0500
committerluigi1111 <luigi1111w@gmail.com>2023-06-27 11:41:57 -0500
commitb86a620b4db11a8dd5f9938eba53578b539e2bf8 (patch)
tree107cee8541ca261dc5316c60fb2e2de79492098f /src
parentMerge pull request #8848 (diff)
parentdaemon: remove --fluffy-blocks (diff)
downloadmonero-b86a620b4db11a8dd5f9938eba53578b539e2bf8.tar.xz
Merge pull request #8855
bb83eb1 daemon: remove --fluffy-blocks (tobtoht)
Diffstat (limited to 'src')
-rw-r--r--src/cryptonote_core/cryptonote_core.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/cryptonote_core/cryptonote_core.cpp b/src/cryptonote_core/cryptonote_core.cpp
index c989939a2..7b0c9e495 100644
--- a/src/cryptonote_core/cryptonote_core.cpp
+++ b/src/cryptonote_core/cryptonote_core.cpp
@@ -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();