File tree Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,6 @@ static struct CRPCSignals
40
40
boost::signals2::signal<void ()> Started;
41
41
boost::signals2::signal<void ()> Stopped;
42
42
boost::signals2::signal<void (const CRPCCommand&)> PreCommand;
43
- boost::signals2::signal<void (const CRPCCommand&)> PostCommand;
44
43
} g_rpcSignals;
45
44
46
45
void RPCServer::OnStarted (boost::function<void ()> slot)
@@ -58,11 +57,6 @@ void RPCServer::OnPreCommand(boost::function<void (const CRPCCommand&)> slot)
58
57
g_rpcSignals.PreCommand .connect (boost::bind (slot, _1));
59
58
}
60
59
61
- void RPCServer::OnPostCommand (boost::function<void (const CRPCCommand&)> slot)
62
- {
63
- g_rpcSignals.PostCommand .connect (boost::bind (slot, _1));
64
- }
65
-
66
60
void RPCTypeCheck (const UniValue& params,
67
61
const std::list<UniValue::VType>& typesExpected,
68
62
bool fAllowNull )
@@ -491,8 +485,6 @@ UniValue CRPCTable::execute(const JSONRPCRequest &request) const
491
485
{
492
486
throw JSONRPCError (RPC_MISC_ERROR, e.what ());
493
487
}
494
-
495
- g_rpcSignals.PostCommand (*pcmd);
496
488
}
497
489
498
490
std::vector<std::string> CRPCTable::listCommands () const
You can’t perform that action at this time.
0 commit comments