Use new daemon name

This commit is contained in:
paveljanik 2014-03-05 10:48:16 +01:00 committed by langerhans
parent c969e6fa09
commit 06ce2db0e5
2 changed files with 4 additions and 4 deletions

View file

@ -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] <command> [params] " + _("Send command to Dogecoin server") + "\n" +
" dogecoin-cli [options] <command> [params] " + _("Send command to Dogecoin Core") + "\n" +
" dogecoin-cli [options] help " + _("List commands") + "\n" +
" dogecoin-cli [options] help <command> " + _("Get help for a command") + "\n";

View file

@ -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] <command> [params] " + _("Send command to Dogecoin server") + "\n" +
" dogecoind [options] <command> [params] " + _("Send command to Dogecoin Core") + "\n" +
" dogecoind [options] help " + _("List commands") + "\n" +
" dogecoind [options] help <command> " + _("Get help for a command") + "\n";