changed return of wallet_accounts

This commit is contained in:
jed
2012-06-07 23:17:28 -07:00
parent 74518e77d0
commit ec9b304cb6
6 changed files with 12 additions and 8 deletions

View File

@@ -237,8 +237,8 @@ std::string JSONRPCReply(const Json::Value& result, const Json::Value& error, co
{
Json::Value reply(Json::objectValue);
reply["result"]=result;
reply["error"]=error;
reply["id"]=id;
//reply["error"]=error;
//reply["id"]=id;
Json::FastWriter writer;
return writer.write(reply) + "\n";
}