From ea73656a215bbfb2f5900add6f884391da6d58f0 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Tue, 3 Jan 2012 20:30:26 -0800 Subject: [PATCH] Cleanup of RPC names. --- RPCServer.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/RPCServer.h b/RPCServer.h index 9806a496c3..24970b925a 100644 --- a/RPCServer.h +++ b/RPCServer.h @@ -30,11 +30,12 @@ class RPCServer : public boost::enable_shared_from_this Json::Value doCommand(const std::string& command, Json::Value& params); Json::Value doCreateFamily(Json::Value& params); - Json::Value doGetAccount(Json::Value& params); - Json::Value doGetNewAccount(Json::Value& params); + Json::Value doFamilyInfo(Json::Value& params); + Json::Value doAccountInfo(Json::Value& params); + Json::Value doNewAccount(Json::Value& params); Json::Value doLock(Json::Value& params); Json::Value doUnlock(Json::Value& params); - Json::Value doInfo(Json::Value& params); + Json::Value doSendTo(Json::Value& params); public: typedef boost::shared_ptr pointer;