From db3a5e4151a499d94f1738934d280a4163295ff7 Mon Sep 17 00:00:00 2001 From: paveljanik Date: Wed, 5 Mar 2014 10:48:16 +0100 Subject: [PATCH] Use the new name Bitcoin Core Daemon instead of Bitcoin server Rebased-By: Wladimir J. van der Laan Rebased-From-Github-Pull: #3801 --- src/bitcoin-cli.cpp | 4 ++-- src/bitcoind.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/bitcoin-cli.cpp b/src/bitcoin-cli.cpp index 51a746f84..817369fe9 100644 --- a/src/bitcoin-cli.cpp +++ b/src/bitcoin-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 = _("Bitcoin RPC client version") + " " + FormatFullVersion() + "\n\n" + + std::string strUsage = _("Bitcoin Core RPC client version") + " " + FormatFullVersion() + "\n\n" + _("Usage:") + "\n" + - " bitcoin-cli [options] [params] " + _("Send command to Bitcoin server") + "\n" + + " bitcoin-cli [options] [params] " + _("Send command to Bitcoin Core") + "\n" + " bitcoin-cli [options] help " + _("List commands") + "\n" + " bitcoin-cli [options] help " + _("Get help for a command") + "\n"; diff --git a/src/bitcoind.cpp b/src/bitcoind.cpp index 5d8721884..4882a0053 100644 --- a/src/bitcoind.cpp +++ b/src/bitcoind.cpp @@ -82,9 +82,9 @@ bool AppInit(int argc, char* argv[]) // First part of help message is specific to bitcoind / RPC client std::string strUsage = _("Bitcoin Core Daemon") + " " + _("version") + " " + FormatFullVersion() + "\n\n" + _("Usage:") + "\n" + - " bitcoind [options] " + _("Start Bitcoin server") + "\n" + + " bitcoind [options] " + _("Start Bitcoin Core Daemon") + "\n" + _("Usage (deprecated, use bitcoin-cli):") + "\n" + - " bitcoind [options] [params] " + _("Send command to Bitcoin server") + "\n" + + " bitcoind [options] [params] " + _("Send command to Bitcoin Core") + "\n" + " bitcoind [options] help " + _("List commands") + "\n" + " bitcoind [options] help " + _("Get help for a command") + "\n";