Small cleanups/fixes.

This commit is contained in:
JoelKatz
2012-01-05 16:54:55 -08:00
parent c1213b20c6
commit 2e3a48dcea
8 changed files with 18 additions and 16 deletions

View File

@@ -183,16 +183,19 @@ Json::Value RPCServer::doAccountInfo(Json::Value &params)
Json::Value RPCServer::doNewAccount(Json::Value &params)
{ // newaccount <family>
return "Not yet";
}
Json::Value RPCServer::doLock(Json::Value &params)
{ // lock <family>
// lock
return "Not yet";
}
Json::Value RPCServer::doUnlock(Json::Value &params)
{ // unlock <hexPrivateKey>
// unlock "<pass phrase>"
return "Not yet";
}
Json::Value RPCServer::doFamilyInfo(Json::Value &params)
@@ -290,6 +293,7 @@ Json::Value RPCServer::doSendTo(Json::Value& params)
{ // Implement simple sending without gathering
// sendto <destination> <amount>
// sendto <destination> <amount> <tag>
return "Not yet";
}
Json::Value RPCServer::doCommand(const std::string& command, Json::Value& params)