From 06ce2db0e5db4eaf7cb99e3c95d9829bde57b93e Mon Sep 17 00:00:00 2001 From: paveljanik Date: Wed, 5 Mar 2014 10:48:16 +0100 Subject: [PATCH] Use new daemon name --- src/dogecoin-cli.cpp | 4 ++-- src/dogecoind.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/dogecoin-cli.cpp b/src/dogecoin-cli.cpp index efba9eb24..313259591 100644 --- a/src/dogecoin-cli.cpp +++ b/src/dogecoin-cli.cpp @@ -37,9 +37,9 @@ static bool AppInitRPC(int argc, char* argv[]) if (argc<2 || mapArgs.count("-?") || mapArgs.count("--help")) { // First part of help message is specific to RPC client - std::string strUsage = _("Dogecoin RPC client version") + " " + FormatFullVersion() + "\n\n" + + std::string strUsage = _("Dogecoin Core RPC client version") + " " + FormatFullVersion() + "\n\n" + _("Usage:") + "\n" + - " dogecoin-cli [options] [params] " + _("Send command to Dogecoin server") + "\n" + + " dogecoin-cli [options] [params] " + _("Send command to Dogecoin Core") + "\n" + " dogecoin-cli [options] help " + _("List commands") + "\n" + " dogecoin-cli [options] help " + _("Get help for a command") + "\n"; diff --git a/src/dogecoind.cpp b/src/dogecoind.cpp index dea9fc227..bdc6bb562 100644 --- a/src/dogecoind.cpp +++ b/src/dogecoind.cpp @@ -82,9 +82,9 @@ bool AppInit(int argc, char* argv[]) // First part of help message is specific to dogecoind / RPC client std::string strUsage = _("Dogecoin Core Daemon") + " " + _("version") + " " + FormatFullVersion() + "\n\n" + _("Usage:") + "\n" + - " dogecoind [options] " + _("Start Dogecoin server") + "\n" + + " dogecoind [options] " + _("Start Dogecoin Core Daemon") + "\n" + _("Usage (deprecated, use dogecoin-cli):") + "\n" + - " dogecoind [options] [params] " + _("Send command to Dogecoin server") + "\n" + + " dogecoind [options] [params] " + _("Send command to Dogecoin Core") + "\n" + " dogecoind [options] help " + _("List commands") + "\n" + " dogecoind [options] help " + _("Get help for a command") + "\n";