From d5ebb107ce630ba4c4ccae726f5468d378ec9f04 Mon Sep 17 00:00:00 2001 From: Prathamesh Musale Date: Wed, 13 Mar 2024 10:45:42 +0530 Subject: [PATCH] Update node data path in get status GQL resolver --- gql/status.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gql/status.go b/gql/status.go index 4608f058..38a079ad 100644 --- a/gql/status.go +++ b/gql/status.go @@ -10,8 +10,8 @@ import ( "github.com/cosmos/cosmos-sdk/client" ) -// NodeDataPath is the path to the laconicd data folder. -var NodeDataPath = os.ExpandEnv("$HOME/.laconicd/data") +// NodeDataPath is the path to the laconic2d data folder. +var NodeDataPath = os.ExpandEnv("$HOME/.laconic2d/data") func getStatusInfo(client client.Context) (*NodeInfo, *SyncInfo, *ValidatorInfo, error) { nodeClient, err := client.GetNode()