diff options
Diffstat (limited to 'src/util.cpp')
| -rw-r--r-- | src/util.cpp | 8 |
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 } |