aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcoFalke <[email protected]>2020-07-03 10:13:18 -0400
committerMarcoFalke <[email protected]>2020-07-03 10:32:36 -0400
commitfa9708f94c01cb8bf2971bdf404af38c38fa341b (patch)
tree34ef5b23ed028032ac556b96cd99efe7bbf03a7d
parentrpc: Add CRPCCommand constructor which takes RPCHelpMan (diff)
downloaddiscoin-fa9708f94c01cb8bf2971bdf404af38c38fa341b.tar.xz
discoin-fa9708f94c01cb8bf2971bdf404af38c38fa341b.zip
rpc: Assert that passed arg names are equal to hardcoded ones
-rw-r--r--src/rpc/server.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/rpc/server.h b/src/rpc/server.h
index 1c587ae88..6da3e94ea 100644
--- a/src/rpc/server.h
+++ b/src/rpc/server.h
@@ -112,6 +112,8 @@ public:
fn().GetArgNames(),
intptr_t(fn))
{
+ CHECK_NONFATAL(fn().m_name == name_in);
+ CHECK_NONFATAL(fn().GetArgNames() == args_in);
}
//! Simplified constructor taking plain rpcfn_type function pointer.