This commit is contained in:
JoelKatz
2012-05-08 19:51:11 -07:00
parent 48ec7af8c6
commit 6e9424508d

View File

@@ -253,7 +253,7 @@ Json::Value RPCServer::doNewAccount(Json::Value &params)
return JSONRPCError(500, "Family required");
NewcoinAddress family = parseFamily(fParam);
if(!family.isValid()) return JSONRPCError(500, "Family not found.");
if (!family.isValid()) return JSONRPCError(500, "Family not found.");
LocalAccount::pointer account(theApp->getWallet().getNewLocalAccount(family));
if(!account)