diff --git a/src/RPCServer.cpp b/src/RPCServer.cpp index 13739bf22f..f6bc477ab0 100644 --- a/src/RPCServer.cpp +++ b/src/RPCServer.cpp @@ -253,7 +253,7 @@ Json::Value RPCServer::doNewAccount(Json::Value ¶ms) 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)