We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a30e0f commit bf43832Copy full SHA for bf43832
src/rpc/server.cpp
@@ -36,7 +36,6 @@ static struct CRPCSignals
36
{
37
boost::signals2::signal<void ()> Started;
38
boost::signals2::signal<void ()> Stopped;
39
- boost::signals2::signal<void (const CRPCCommand&)> PreCommand;
40
} g_rpcSignals;
41
42
void RPCServer::OnStarted(std::function<void ()> slot)
@@ -484,8 +483,6 @@ UniValue CRPCTable::execute(const JSONRPCRequest &request) const
484
483
if (!pcmd)
485
throw JSONRPCError(RPC_METHOD_NOT_FOUND, "Method not found");
486
487
- g_rpcSignals.PreCommand(*pcmd);
488
-
489
try
490
491
// Execute, convert arguments to array if necessary
0 commit comments