From 36557b59758d72ef6308dfac973df96812ad382d Mon Sep 17 00:00:00 2001 From: Steve Gerbino Date: Fri, 18 Nov 2022 15:50:27 -0500 Subject: [PATCH] #153: Attempt to fix linter for purposefully ignoring error --- cmd/cli/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/cli/main.go b/cmd/cli/main.go index f5599a6..3c3163e 100644 --- a/cmd/cli/main.go +++ b/cmd/cli/main.go @@ -38,7 +38,7 @@ const ( func main() { // Optionally load .env file - godotenv.Load() + _ = godotenv.Load() // Setup command line options rpcAddress := flag.StringP(rpcOption, "r", rpcDefault, "RPC server URL")