From f412a11c88a966f7c0727b8fa47a3a6f02b7d2cf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 9 Aug 2024 15:35:04 -0400 Subject: [PATCH] hardcoded chain id (#275) (#276) (cherry picked from commit 2da00fa0c931506f39c264edc846f744ca5f2824) Co-authored-by: CJPotter10 <91627020+CJPotter10@users.noreply.github.com> --- daemons/reporter/client/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemons/reporter/client/client.go b/daemons/reporter/client/client.go index d7187464a..7e7f7d255 100644 --- a/daemons/reporter/client/client.go +++ b/daemons/reporter/client/client.go @@ -102,7 +102,7 @@ func (c *Client) Start( panic("account name is empty, please use --key-name flag") } accountName := c.AccountName - c.cosmosCtx = c.cosmosCtx.WithChainID(sdk.KeyringServiceName()) + c.cosmosCtx = c.cosmosCtx.WithChainID("layertest-1") homeDir := viper.GetString("home") if homeDir != "" { c.cosmosCtx = c.cosmosCtx.WithHomeDir(homeDir)