From c5de3dcb4ca4c6bc0a1b9701fceca29feaa40c1a Mon Sep 17 00:00:00 2001 From: Ben Date: Tue, 4 Mar 2025 10:33:22 +0100 Subject: [PATCH] Fixes whitespace issue with geth env vars --- Framework/GethConnector/GethInput.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Framework/GethConnector/GethInput.cs b/Framework/GethConnector/GethInput.cs index e38af8a4..968aec29 100644 --- a/Framework/GethConnector/GethInput.cs +++ b/Framework/GethConnector/GethInput.cs @@ -46,7 +46,7 @@ { var result = Environment.GetEnvironmentVariable(name); if (string.IsNullOrEmpty(result)) error.Add($"'{name}' is not set."); - return result; + return result.Trim(); } } }