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:
parent
065c6b443f
commit
41dbc4849e
1 changed files with 1 additions and 3 deletions
|
@ -471,9 +471,7 @@ boost::filesystem::path GetDefaultDataDir()
|
|||
pathRet = fs::path(pszHome);
|
||||
#ifdef MAC_OSX
|
||||
// Mac
|
||||
pathRet /= "Library/Application Support";
|
||||
TryCreateDirectory(pathRet);
|
||||
return pathRet / "Bitcoin";
|
||||
return pathRet / "Library/Application Support/Bitcoin";
|
||||
#else
|
||||
// Unix
|
||||
return pathRet / ".bitcoin";
|
||||
|
|
Loading…
Reference in a new issue