diff --git a/src/init.cpp b/src/init.cpp index 6a26010882..872a7adfe1 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -523,6 +523,12 @@ void SetupServerArgs() // Add the hidden options gArgs.AddHiddenArgs(hidden_args); + + // + // Elements-specific arguments. + // + + } std::string LicenseInfo() diff --git a/src/util.cpp b/src/util.cpp index de65703759..031e95c85c 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -631,6 +631,9 @@ std::string ArgsManager::GetHelpMessage() const case OptionsCategory::GUI: usage += HelpMessageGroup("UI Options:"); break; + case OptionsCategory::ELEMENTS: + usage += HelpMessageGroup("Elements Options:"); + break; case OptionsCategory::COMMANDS: usage += HelpMessageGroup("Commands:"); break; diff --git a/src/util.h b/src/util.h index 23b2a787e4..be85073908 100644 --- a/src/util.h +++ b/src/util.h @@ -130,6 +130,7 @@ enum class OptionsCategory { BLOCK_CREATION, RPC, GUI, + ELEMENTS, COMMANDS, REGISTER_COMMANDS,