diff options
| author | Ross Nicoll <[email protected]> | 2014-03-28 23:40:56 +0000 |
|---|---|---|
| committer | Ross Nicoll <[email protected]> | 2014-03-28 23:40:56 +0000 |
| commit | 48c6ec9af0cef2d6b7aa377def6b2b2de6535480 (patch) | |
| tree | cf7cd3c78d0fd04311184ef1606ce05520f484bb /src/init.cpp | |
| parent | Replaced references to Bitcoin with Dogecoin/Dogecoin Core as appropriate. (diff) | |
| download | discoin-48c6ec9af0cef2d6b7aa377def6b2b2de6535480.tar.xz discoin-48c6ec9af0cef2d6b7aa377def6b2b2de6535480.zip | |
Replaced occurrences of "bitcoin" with "dogecoin" or "Dogecoin" as appropriate
(specific, use of "Dogecoin" as a noun are now capitalised).
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/init.cpp b/src/init.cpp index 60994e40a..059fd5028 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -112,7 +112,7 @@ void Shutdown() TRY_LOCK(cs_Shutdown, lockShutdown); if (!lockShutdown) return; - RenameThread("bitcoin-shutoff"); + RenameThread("dogecoin-shutoff"); mempool.AddTransactionsUpdated(1); StopRPCThreads(); ShutdownRPCMining(); @@ -192,10 +192,10 @@ std::string HelpMessage(HelpMessageMode hmm) { string strUsage = _("Options:") + "\n"; strUsage += " -? " + _("This help message") + "\n"; - strUsage += " -conf=<file> " + _("Specify configuration file (default: bitcoin.conf)") + "\n"; + strUsage += " -conf=<file> " + _("Specify configuration file (default: dogecoin.conf)") + "\n"; strUsage += " -datadir=<dir> " + _("Specify data directory") + "\n"; strUsage += " -testnet " + _("Use the test network") + "\n"; - strUsage += " -pid=<file> " + _("Specify pid file (default: bitcoind.pid)") + "\n"; + strUsage += " -pid=<file> " + _("Specify pid file (default: dogecoind.pid)") + "\n"; strUsage += " -gen " + _("Generate coins (default: 0)") + "\n"; strUsage += " -dbcache=<n> " + strprintf(_("Set database cache size in megabytes (%d to %d, default: %d)"), nMinDbCache, nMaxDbCache, nDefaultDbCache) + "\n"; strUsage += " -timeout=<n> " + _("Specify connection timeout in milliseconds (default: 5000)") + "\n"; @@ -308,7 +308,7 @@ struct CImportingNow void ThreadImport(std::vector<boost::filesystem::path> vImportFiles) { - RenameThread("bitcoin-loadblk"); + RenameThread("dogecoin-loadblk"); // -reindex if (fReindex) { @@ -358,7 +358,7 @@ void ThreadImport(std::vector<boost::filesystem::path> vImportFiles) } } -/** Initialize bitcoin. +/** Initialize dogecoin. * @pre Parameters should be parsed and config file should be read. */ bool AppInit2(boost::thread_group& threadGroup) |