Fixes whitespace issue with geth env vars

This commit is contained in:
Ben 2025-03-04 10:33:22 +01:00
parent 37b98dbb05
commit c5de3dcb4c
No known key found for this signature in database
GPG Key ID: 0F16E812E736C24B

View File

@ -46,7 +46,7 @@
{
var result = Environment.GetEnvironmentVariable(name);
if (string.IsNullOrEmpty(result)) error.Add($"'{name}' is not set.");
return result;
return result.Trim();
}
}
}