aboutsummaryrefslogtreecommitdiff
path: root/src/util.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/util.cpp
parents/DOGE/DIS/g (diff)
downloaddiscoin-f5c716526aaafb318a98e974c8b2fbe02870646b.tar.xz
discoin-f5c716526aaafb318a98e974c8b2fbe02870646b.zip
really s/doge/dis/g this time
Diffstat (limited to 'src/util.cpp')
-rw-r--r--src/util.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/util.cpp b/src/util.cpp
index 2cf6a3279..fc778d768 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -103,8 +103,8 @@ namespace boost {
using namespace std;
-const char * const BITCOIN_CONF_FILENAME = "dogecoin.conf";
-const char * const BITCOIN_PID_FILENAME = "dogecoind.pid";
+const char * const BITCOIN_CONF_FILENAME = "discoin.conf";
+const char * const BITCOIN_PID_FILENAME = "discoind.pid";
CCriticalSection cs_args;
map<string, string> mapArgs;
@@ -462,7 +462,7 @@ static std::string FormatException(const std::exception* pex, const char* pszThr
char pszModule[MAX_PATH] = "";
GetModuleFileNameA(NULL, pszModule, sizeof(pszModule));
#else
- const char* pszModule = "dogecoin";
+ const char* pszModule = "discoin";
#endif
if (pex)
return strprintf(
@@ -501,7 +501,7 @@ boost::filesystem::path GetDefaultDataDir()
return pathRet / "Library/Application Support/Dogecoin";
#else
// Unix
- return pathRet / ".dogecoin";
+ return pathRet / ".discoin";
#endif
#endif
}