From e352700aaff0ef6799bfaa16f849a7120793b409 Mon Sep 17 00:00:00 2001 From: Pablo Deymonnaz Date: Mon, 30 Dec 2024 17:36:04 -0300 Subject: [PATCH] Fix call to ReadJsonConfig --- core/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/config/config.go b/core/config/config.go index 21d158e..51f9446 100644 --- a/core/config/config.go +++ b/core/config/config.go @@ -78,7 +78,7 @@ func NewConfig(ctx *cli.Context) (*Config, error) { if _, err := os.Stat(credibleSquaringDeploymentFilePath); errors.Is(err, os.ErrNotExist) { panic("Path " + credibleSquaringDeploymentFilePath + " does not exist") } - sdkutils.ReadJsonConfig(credibleSquaringDeploymentFilePath, &credibleSquaringDeploymentRaw) + commonincredible.ReadJsonConfig(credibleSquaringDeploymentFilePath, &credibleSquaringDeploymentRaw) logger, err := sdklogging.NewZapLogger(configRaw.Environment) if err != nil {