diff --git a/src/rpc/server.cpp b/src/rpc/server.cpp index 0b763acd4..0d29f245a 100644 --- a/src/rpc/server.cpp +++ b/src/rpc/server.cpp @@ -193,9 +193,6 @@ std::string CRPCTable::help(const std::string& strCommand) const { const CRPCCommand *pcmd = command.second; string strMethod = pcmd->name; - // We already filter duplicates, but these deprecated screw up the sort order - if (strMethod.find("label") != string::npos) - continue; if ((strCommand != "" || pcmd->category == "hidden") && strMethod != strCommand) continue; try