Skip to content

Commit

Permalink
Hotfix in remote signer with wrong comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
Jossec101 committed Jan 12, 2023
1 parent 87917fd commit e2cd35c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Services/RemoteSignerService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public RemoteSignerServiceService(ILogger<RemoteSignerServiceService> logger)
try
{
//Check if ENABLE_REMOTE_SIGNER is set
if (Environment.GetEnvironmentVariable("ENABLE_REMOTE_SIGNER") != null)
if (Environment.GetEnvironmentVariable("ENABLE_REMOTE_SIGNER") == null)
{
_logger.LogWarning("Remote signer is disabled but was called");
return null;
Expand Down

0 comments on commit e2cd35c

Please sign in to comment.