Browse Source

Remove unreachable code (g_rpcSignals.PostCommand)

0.15
practicalswift 8 years ago
parent
commit
54fae05dad
  1. 8
      src/rpc/server.cpp

8
src/rpc/server.cpp

@ -45,7 +45,6 @@ static struct CRPCSignals @@ -45,7 +45,6 @@ static struct CRPCSignals
boost::signals2::signal<void ()> Started;
boost::signals2::signal<void ()> Stopped;
boost::signals2::signal<void (const CRPCCommand&)> PreCommand;
boost::signals2::signal<void (const CRPCCommand&)> PostCommand;
} g_rpcSignals;
void RPCServer::OnStarted(boost::function<void ()> slot)
@ -63,11 +62,6 @@ void RPCServer::OnPreCommand(boost::function<void (const CRPCCommand&)> slot) @@ -63,11 +62,6 @@ void RPCServer::OnPreCommand(boost::function<void (const CRPCCommand&)> slot)
g_rpcSignals.PreCommand.connect(boost::bind(slot, _1));
}
void RPCServer::OnPostCommand(boost::function<void (const CRPCCommand&)> slot)
{
g_rpcSignals.PostCommand.connect(boost::bind(slot, _1));
}
void RPCTypeCheck(const UniValue& params,
const list<UniValue::VType>& typesExpected,
bool fAllowNull)
@ -492,8 +486,6 @@ UniValue CRPCTable::execute(const JSONRPCRequest &request) const @@ -492,8 +486,6 @@ UniValue CRPCTable::execute(const JSONRPCRequest &request) const
{
throw JSONRPCError(RPC_MISC_ERROR, e.what());
}
g_rpcSignals.PostCommand(*pcmd);
}
std::vector<std::string> CRPCTable::listCommands() const

Loading…
Cancel
Save