aboutsummaryrefslogtreecommitdiff
path: root/src/zmq
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2021-01-12 06:41:46 +0100
committerMarcoFalke <falke.marco@gmail.com>2021-01-28 08:19:52 +0100
commitfa04f9b4ddffc5ef23c2ee7f3cc72a7c2ae49204 (patch)
treed0e54a820a23c4db4ae7e56136b161ca476da201 /src/zmq
parentfa92912b4bb4629addcbfdfb7cc000be701614af (diff)
downloadbitcoin-fa04f9b4ddffc5ef23c2ee7f3cc72a7c2ae49204.tar.xz
rpc: Remove duplicate name and argNames from CRPCCommand
Diffstat (limited to 'src/zmq')
-rw-r--r--src/zmq/zmqrpc.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/zmq/zmqrpc.cpp b/src/zmq/zmqrpc.cpp
index 1dd751b493..81859f924f 100644
--- a/src/zmq/zmqrpc.cpp
+++ b/src/zmq/zmqrpc.cpp
@@ -52,9 +52,9 @@ static RPCHelpMan getzmqnotifications()
}
const CRPCCommand commands[] =
-{ // category name actor (function) argNames
- // ----------------- ------------------------ ----------------------- ----------
- { "zmq", "getzmqnotifications", &getzmqnotifications, {} },
+{ // category actor (function)
+ // ----------------- -----------------------
+ { "zmq", &getzmqnotifications, },
};
} // anonymous namespace