diff --git a/src/rpc/server.cpp b/src/rpc/server.cpp index 733f8601e..5b4d8e2f3 100644 --- a/src/rpc/server.cpp +++ b/src/rpc/server.cpp @@ -36,7 +36,6 @@ static struct CRPCSignals { boost::signals2::signal Started; boost::signals2::signal Stopped; - boost::signals2::signal PreCommand; } g_rpcSignals; void RPCServer::OnStarted(std::function slot) @@ -484,8 +483,6 @@ UniValue CRPCTable::execute(const JSONRPCRequest &request) const if (!pcmd) throw JSONRPCError(RPC_METHOD_NOT_FOUND, "Method not found"); - g_rpcSignals.PreCommand(*pcmd); - try { // Execute, convert arguments to array if necessary