From f5983a475d165e1e4a95d733cdf66d451ef48230 Mon Sep 17 00:00:00 2001 From: barton26 Date: Mon, 16 Aug 2021 17:28:55 -0400 Subject: [PATCH] remove 'label' filter for rpc command help --- src/rpc/server.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/rpc/server.cpp b/src/rpc/server.cpp index 05ab43d1c6..6fcd1fdce0 100644 --- a/src/rpc/server.cpp +++ b/src/rpc/server.cpp @@ -168,9 +168,6 @@ string CRPCTable::help(string strCommand, rpccategory category) const { const CRPCCommand *pcmd = mi->second; string strMethod = mi->first; - // We already filter duplicates, but these deprecated screw up the sort order - if (strMethod.find("label") != string::npos) - continue; // Refactored rules for supporting of subcategories if (pcmd->category == cat_null) continue;