diff options
author | MarcoFalke <falke.marco@gmail.com> | 2021-01-12 06:28:13 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2021-01-28 08:16:34 +0100 |
commit | fa92912b4bb4629addcbfdfb7cc000be701614af (patch) | |
tree | 2e8b64d487f766ec44d057f8f5e8aee6b2354217 /src/rpc/server.h | |
parent | faf835680be39811827504f77005b6603165f53e (diff) |
rpc: Use RPCHelpMan for check-rpc-mappings linter
Diffstat (limited to 'src/rpc/server.h')
-rw-r--r-- | src/rpc/server.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/rpc/server.h b/src/rpc/server.h index 040192b455..d2f44334ae 100644 --- a/src/rpc/server.h +++ b/src/rpc/server.h @@ -147,6 +147,10 @@ public: */ std::vector<std::string> listCommands() const; + /** + * Return all named arguments that need to be converted by the client from string to another JSON type + */ + UniValue dumpArgMap() const; /** * Appends a CRPCCommand to the dispatch table. |