[zk] [fixup] Correct ZC_GetBaseParamsDir impl

This commit is contained in:
Jon Layton 2018-07-14 16:09:24 -05:00
parent 959bd70b98
commit 88bc234adf
1 changed files with 3 additions and 1 deletions

View File

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