File superbitcoin-util.patch of Package superbitcoin
--- src/utils/util.cpp 2018-05-27 18:50:57.275868186 +0200
+++ util.cpp 2018-05-27 18:57:11.194915757 +0200
@@ -102,8 +102,8 @@
// Application startup time (used for uptime calculation)
const int64_t nStartupTime = GetTime();
-const char *const BITCOIN_CONF_FILENAME = "sbtc.conf";
-const char *const BITCOIN_PID_FILENAME = "sbtc.pid";
+const char *const BITCOIN_CONF_FILENAME = "superbitcoin.conf";
+const char *const BITCOIN_PID_FILENAME = "superbitcoin.pid";
CTranslationInterface translationInterface;
@@ -182,7 +182,7 @@
char pszModule[MAX_PATH] = "";
GetModuleFileNameA(nullptr, pszModule, sizeof(pszModule));
#else
- const char *pszModule = "bitcoin";
+ const char *pszModule = "superbitcoin";
#endif
if (pex)
return strprintf(
@@ -221,7 +221,7 @@
return pathRet / "Library/Application Support/SuperBitcoin";
#else
// Unix
- return pathRet / ".sbtc";
+ return pathRet / ".superbitcoin";
#endif
#endif
}