aboutsummaryrefslogtreecommitdiff
path: root/src/bitcoind.cpp
diff options
context:
space:
mode:
authorTomo Ueda <[email protected]>2021-09-02 12:54:43 -0700
committerTomo Ueda <[email protected]>2021-09-02 12:54:43 -0700
commitf5c716526aaafb318a98e974c8b2fbe02870646b (patch)
treee14145656fcff86ec2c7a1ecf4ad28e0b40f36aa /src/bitcoind.cpp
parents/DOGE/DIS/g (diff)
downloaddiscoin-f5c716526aaafb318a98e974c8b2fbe02870646b.tar.xz
discoin-f5c716526aaafb318a98e974c8b2fbe02870646b.zip
really s/doge/dis/g this time
Diffstat (limited to 'src/bitcoind.cpp')
-rw-r--r--src/bitcoind.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bitcoind.cpp b/src/bitcoind.cpp
index 8d50d4aff..4f23b84fc 100644
--- a/src/bitcoind.cpp
+++ b/src/bitcoind.cpp
@@ -86,7 +86,7 @@ bool AppInit(int argc, char* argv[])
else
{
strUsage += "\n" + _("Usage:") + "\n" +
- " dogecoind [options] " + strprintf(_("Start %s Daemon"), _(PACKAGE_NAME)) + "\n";
+ " discoind [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], "dogecoin:"))
+ if (!IsSwitchChar(argv[i][0]) && !boost::algorithm::istarts_with(argv[i], "discoin:"))
fCommandLine = true;
if (fCommandLine)
{
- fprintf(stderr, "Error: There is no RPC client functionality in dogecoind anymore. Use the dogecoin-cli utility instead.\n");
+ fprintf(stderr, "Error: There is no RPC client functionality in discoind anymore. Use the discoin-cli utility instead.\n");
exit(EXIT_FAILURE);
}
// -server defaults to true for bitcoind but not for the GUI so do this here