diff options
| author | Gregory Sanders <[email protected]> | 2017-02-28 16:04:19 -0800 |
|---|---|---|
| committer | Gregory Sanders <[email protected]> | 2017-03-01 09:15:39 -0800 |
| commit | 666597798c07d9df06681be63d2b2f51f0d5ca8a (patch) | |
| tree | c015d35b3b8c17992c806bb5880aa95504b5a48e /src/rpc/server.cpp | |
| parent | Merge #9884: Add Pieter's old signed commits to revsig-commits (diff) | |
| download | discoin-666597798c07d9df06681be63d2b2f51f0d5ca8a.tar.xz discoin-666597798c07d9df06681be63d2b2f51f0d5ca8a.zip | |
remove 'label' filter for rpc command help
Diffstat (limited to 'src/rpc/server.cpp')
| -rw-r--r-- | src/rpc/server.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
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 |