[fixup] Remove TryCreateDirectory for MacOS ZcashParams, as it is no longer used in bitcoin

This commit is contained in:
Jon Layton 2018-07-16 13:39:56 -05:00
parent 18227b4fea
commit 31fe6ee585
1 changed files with 1 additions and 3 deletions

View File

@ -750,9 +750,7 @@ static boost::filesystem::path ZC_GetBaseParamsDir()
pathRet = fs::path(pszHome);
#ifdef MAC_OSX
// Mac
pathRet /= "Library/Application Support";
TryCreateDirectory(pathRet);
return pathRet / "ZcashParams";
return pathRet / "Library/Application Support/ZcashParams";
#else
// Unix
return pathRet / ".zcash-params";