From f27f6b42875a839edeadf693869ce5fae20397cb Mon Sep 17 00:00:00 2001 From: "Jonathan \"Duke\" Leto" Date: Fri, 13 Sep 2019 08:22:48 -0700 Subject: [PATCH] Fix windows binary name --- src/connection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/connection.cpp b/src/connection.cpp index 4db7762..90407e8 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -346,7 +346,7 @@ bool ConnectionLoader::startEmbeddedZcashd() { auto hushdProgram = appPath.absoluteFilePath("hushd"); #elif defined(Q_OS_WIN64) // we use the CLI directly - auto hushdProgram = appPath.absoluteFilePath("komodod"); + auto hushdProgram = appPath.absoluteFilePath("komodod.exe"); #else main->logger->write("Unknown OS!"); auto hushdProgram = appPath.absoluteFilePath("komodod");