Remove unused OptionsCategory arg from AddCommand

This commit is contained in:
MarcoFalke
2021-06-17 14:01:57 +02:00
parent fa3c1eee7f
commit fa751a47ff
4 changed files with 9 additions and 9 deletions

View File

@@ -34,7 +34,7 @@ static void SetupBitcoinUtilArgs(ArgsManager &argsman)
argsman.AddArg("-version", "Print version and exit", ArgsManager::ALLOW_ANY, OptionsCategory::OPTIONS);
argsman.AddCommand("grind", "Perform proof of work on hex header string", OptionsCategory::COMMANDS);
argsman.AddCommand("grind", "Perform proof of work on hex header string");
SetupChainParamsBaseOptions(argsman);
}