diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-06-26 14:12:46 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-07-03 11:09:05 -0400 |
commit | fa7592bfa8691eb0289b21da3571709a18391b0f (patch) | |
tree | 14a4510caca3ea9094bf0a6f04cff6ade11ae8db /src/rpc/util.h | |
parent | aaaaad562790cd4dce1568ae193f5393aacacedf (diff) |
rpc: Update server to use new RPCHelpMan
Also, move Check to inside HandleRequest
Diffstat (limited to 'src/rpc/util.h')
-rw-r--r-- | src/rpc/util.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rpc/util.h b/src/rpc/util.h index f49fb1d6b1..35e0d5e9ef 100644 --- a/src/rpc/util.h +++ b/src/rpc/util.h @@ -336,6 +336,7 @@ public: std::string ToString() const; UniValue HandleRequest(const JSONRPCRequest& request) { + Check(request); return m_fun(*this, request); } /** If the supplied number of args is neither too small nor too high */ |