From d5321a13d19f392a882a7144dfee33f47c869d74 Mon Sep 17 00:00:00 2001 From: PrathyushaLakkireddy Date: Wed, 25 Sep 2024 10:38:50 +0530 Subject: [PATCH] fix lint --- chainclient/client_config.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/chainclient/client_config.go b/chainclient/client_config.go index fb9c0d5..e7dc580 100644 --- a/chainclient/client_config.go +++ b/chainclient/client_config.go @@ -12,7 +12,8 @@ type Config struct { } func GetClientConfig() Config { - config := Config{ //TODO: think about better approach + // TODO: think about better approach(may be read from config.yaml) + config := Config{ ValidatorKey: os.Getenv("VALIDATOR_KEY"), KeyringBackend: os.Getenv("KEYRING_BACKEND"), }