mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-19 06:43:45 +01:00
Removed call to TryCreateDirectory from GetDefaultDataDir in src/util.cpp.
See https://github.com/bitcoin/bitcoin/issues/7845#issuecomment-207684728. Also refactored `GetDefaultDataDir` function to return path for Mac in one expression.
This commit is contained in:
@@ -471,9 +471,7 @@ boost::filesystem::path GetDefaultDataDir()
|
|||||||
pathRet = fs::path(pszHome);
|
pathRet = fs::path(pszHome);
|
||||||
#ifdef MAC_OSX
|
#ifdef MAC_OSX
|
||||||
// Mac
|
// Mac
|
||||||
pathRet /= "Library/Application Support";
|
return pathRet / "Library/Application Support/Bitcoin";
|
||||||
TryCreateDirectory(pathRet);
|
|
||||||
return pathRet / "Bitcoin";
|
|
||||||
#else
|
#else
|
||||||
// Unix
|
// Unix
|
||||||
return pathRet / ".bitcoin";
|
return pathRet / ".bitcoin";
|
||||||
|
|||||||
Reference in New Issue
Block a user