aboutsummaryrefslogtreecommitdiff
path: root/src/bitcoind.cpp
diff options
context:
space:
mode:
authorRoss Nicoll <[email protected]>2015-07-27 16:35:30 +0100
committerRoss Nicoll <[email protected]>2019-03-25 05:36:11 +0000
commit148a2aca05fe98031bcf857fa186d792c507090c (patch)
tree11c7fd275ea0a61250e747b81f0b2c372c77a3dd /src/bitcoind.cpp
parentDrop use of smart fees (diff)
downloaddiscoin-148a2aca05fe98031bcf857fa186d792c507090c.tar.xz
discoin-148a2aca05fe98031bcf857fa186d792c507090c.zip
Introduce basic Dogecoin branding
Diffstat (limited to 'src/bitcoind.cpp')
-rw-r--r--src/bitcoind.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bitcoind.cpp b/src/bitcoind.cpp
index 9bab3a202..8d50d4aff 100644
--- a/src/bitcoind.cpp
+++ b/src/bitcoind.cpp
@@ -86,7 +86,7 @@ bool AppInit(int argc, char* argv[])
else
{
strUsage += "\n" + _("Usage:") + "\n" +
- " bitcoind [options] " + strprintf(_("Start %s Daemon"), _(PACKAGE_NAME)) + "\n";
+ " dogecoind [options] " + strprintf(_("Start %s Daemon"), _(PACKAGE_NAME)) + "\n";
strUsage += "\n" + HelpMessage(HMM_BITCOIND);
}
@@ -120,12 +120,12 @@ bool AppInit(int argc, char* argv[])
// Command-line RPC
bool fCommandLine = false;
for (int i = 1; i < argc; i++)
- if (!IsSwitchChar(argv[i][0]) && !boost::algorithm::istarts_with(argv[i], "bitcoin:"))
+ if (!IsSwitchChar(argv[i][0]) && !boost::algorithm::istarts_with(argv[i], "dogecoin:"))
fCommandLine = true;
if (fCommandLine)
{
- fprintf(stderr, "Error: There is no RPC client functionality in bitcoind anymore. Use the bitcoin-cli utility instead.\n");
+ fprintf(stderr, "Error: There is no RPC client functionality in dogecoind anymore. Use the dogecoin-cli utility instead.\n");
exit(EXIT_FAILURE);
}
// -server defaults to true for bitcoind but not for the GUI so do this here
@@ -151,7 +151,7 @@ bool AppInit(int argc, char* argv[])
if (GetBoolArg("-daemon", false))
{
#if HAVE_DECL_DAEMON
- fprintf(stdout, "Bitcoin server starting\n");
+ fprintf(stdout, "Dogecoin server starting\n");
// Daemonize
if (daemon(1, 0)) { // don't chdir (1), do close FDs (0)