From 32a158bb8148a9415c9b756e4ee7ca868cb22b68 Mon Sep 17 00:00:00 2001 From: Gregory Sanders Date: Tue, 28 Feb 2017 16:04:19 -0800 Subject: [PATCH] remove 'label' filter for rpc command help Cherry-picked from: 666597798c07d9df06681be63d2b2f51f0d5ca8a --- src/rpc/server.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/rpc/server.cpp b/src/rpc/server.cpp index 29e38c10790..f01f11c7a0e 100644 --- a/src/rpc/server.cpp +++ b/src/rpc/server.cpp @@ -203,9 +203,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