From 71756ca5ec2ab1d7afea6a2f9bb4c3e165a51450 Mon Sep 17 00:00:00 2001 From: "Jonathan \"Duke\" Leto" Date: Fri, 22 Nov 2019 22:57:22 -0800 Subject: [PATCH] Show PWD in debug.log to help debug DMG param location --- src/init.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/init.cpp b/src/init.cpp index 9b65b0b3e..afd77535b 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -810,11 +810,13 @@ static void ZC_LoadParams( struct timeval tv_start, tv_end; float elapsed; bool found = false; + char cwd[1024]; + getcwd(cwd, sizeof(cwd)); + + LogPrintf("Looking for sapling params, PWD=%s\n", cwd); // Some people have previous partial downloads of zcash params, so check that last // Sapling Param Search path: . /usr/share/hush .. ../hush3 ./Contents/MacOS/ ~/.zcash-params - - LogPrintf("Looking for sapling params..."); gettimeofday(&tv_start, 0); // PWD @@ -857,8 +859,8 @@ static void ZC_LoadParams( if (!found) { // DMG Support: Apple just has to do things differently... - sapling_spend = boost::filesystem::path("Contents/MacOS") / "hush3" / "sapling-spend.params"; - sapling_output = boost::filesystem::path("Contents/MacOS") / "hush3" / "sapling-output.params"; + sapling_spend = boost::filesystem::path("silentdragon.app/Contents/MacOS") / "hush3" / "sapling-spend.params"; + sapling_output = boost::filesystem::path("silentdragon.app/Contents/MacOS") / "hush3" / "sapling-output.params"; if (files_exist(sapling_spend, sapling_output)) { fprintf(stderr,"Found sapling params in ../Contents/MacOS\n"); found = true;