diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-01-10 00:00:57 +0700 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-02-25 22:35:58 +0700 |
commit | fa6b061fc118995eec41766519a11bc0dd1a901d (patch) | |
tree | 751a1f2e3d33f20775b6deb1da15657346b19047 /src/zmq | |
parent | fa7d0503d320900e14c4d9bc016d65c7431070bb (diff) |
rpc: Auto-format RPCResult
Diffstat (limited to 'src/zmq')
-rw-r--r-- | src/zmq/zmqrpc.cpp | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/src/zmq/zmqrpc.cpp b/src/zmq/zmqrpc.cpp index 9c9b27a413..0fbefb6023 100644 --- a/src/zmq/zmqrpc.cpp +++ b/src/zmq/zmqrpc.cpp @@ -19,14 +19,15 @@ UniValue getzmqnotifications(const JSONRPCRequest& request) "\nReturns information about the active ZeroMQ notifications.\n", {}, RPCResult{ - "[\n" - " { (json object)\n" - " \"type\" : \"pubhashtx\", (string) Type of notification\n" - " \"address\" : \"...\", (string) Address of the publisher\n" - " \"hwm\" : n (numeric) Outbound message high water mark\n" - " },\n" - " ...\n" - "]\n" + RPCResult::Type::ARR, "", "", + { + {RPCResult::Type::OBJ, "", "", + { + {RPCResult::Type::STR, "type", "Type of notification"}, + {RPCResult::Type::STR, "address", "Address of the publisher"}, + {RPCResult::Type::NUM, "hwm", "Outbound message high water mark"}, + }}, + } }, RPCExamples{ HelpExampleCli("getzmqnotifications", "") |