From c1c6d46bf12ba3e6294730b5434ef3233bada280 Mon Sep 17 00:00:00 2001 From: Alejandro Cabeza Romero Date: Mon, 2 Mar 2026 19:44:56 +0100 Subject: [PATCH] Don't respect preset circuits env vars. --- src/logos_blockchain_module.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/logos_blockchain_module.cpp b/src/logos_blockchain_module.cpp index d95879c..68932d8 100644 --- a/src/logos_blockchain_module.cpp +++ b/src/logos_blockchain_module.cpp @@ -40,13 +40,6 @@ namespace environment { // - Modifies the environment variable LOGOS_BLOCKCHAIN_CIRCUITS. // - Terminates the program if no valid circuits directory is found. void setupCircuitsPath(const LogosAPI& logosApi) { - // If Environment Variable is set, respect it - const auto envVarPath = qEnvironmentVariable(LOGOS_BLOCKCHAIN_CIRCUITS); - if (!envVarPath.isEmpty() && isCircuitsPathValid(envVarPath)) { - qInfo() << "LOGOS_BLOCKCHAIN_CIRCUITS is already set to a valid path:" << envVarPath; - return; - } - const QString modulePath = logosApi.property("modulePath").toString(); const QDir moduleDir(modulePath);