Skip to content

Commit 0496e15

Browse files
committed
Merge #9894: remove 'label' filter for rpc command help
6665977 remove 'label' filter for rpc command help (Gregory Sanders) Tree-SHA512: 0676c55b2893a469cd6785963affbb04126b9a32c130f1bb22dfd233ede6998f695187264e897ced4e0dac48451d9ae0311ebb4f7442096cad632fd22f75080e
2 parents b00ba62 + 6665977 commit 0496e15

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/rpc/server.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -193,9 +193,6 @@ std::string CRPCTable::help(const std::string& strCommand) const
193193
{
194194
const CRPCCommand *pcmd = command.second;
195195
string strMethod = pcmd->name;
196-
// We already filter duplicates, but these deprecated screw up the sort order
197-
if (strMethod.find("label") != string::npos)
198-
continue;
199196
if ((strCommand != "" || pcmd->category == "hidden") && strMethod != strCommand)
200197
continue;
201198
try

0 commit comments

Comments
 (0)