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 @@ -45,7 +45,6 @@ static struct CRPCSignals
45
45
boost::signals2::signal<void ()> Started;
46
46
boost::signals2::signal<void ()> Stopped;
47
47
boost::signals2::signal<void (const CRPCCommand&)> PreCommand;
48
- boost::signals2::signal<void (const CRPCCommand&)> PostCommand;
49
48
} g_rpcSignals;
50
49
51
50
void RPCServer::OnStarted (boost::function<void ()> slot)
@@ -63,11 +62,6 @@ void RPCServer::OnPreCommand(boost::function<void (const CRPCCommand&)> slot)
63
62
g_rpcSignals.PreCommand .connect (boost::bind (slot, _1));
64
63
}
65
64
66
- void RPCServer::OnPostCommand (boost::function<void (const CRPCCommand&)> slot)
67
- {
68
- g_rpcSignals.PostCommand .connect (boost::bind (slot, _1));
69
- }
70
-
71
65
void RPCTypeCheck (const UniValue& params,
72
66
const list<UniValue::VType>& typesExpected,
73
67
bool fAllowNull )
@@ -492,8 +486,6 @@ UniValue CRPCTable::execute(const JSONRPCRequest &request) const
492
486
{
493
487
throw JSONRPCError (RPC_MISC_ERROR, e.what ());
494
488
}
495
-
496
- g_rpcSignals.PostCommand (*pcmd);
497
489
}
498
490
499
491
std::vector<std::string> CRPCTable::listCommands () const
You can’t perform that action at this time.
0 commit comments