Skip to content

Commit

Permalink
Merge branch 'main' into feat/remove-relayer
Browse files Browse the repository at this point in the history
  • Loading branch information
Pantani authored May 3, 2024
2 parents 307a0e5 + 8d9eccd commit 2828366
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 18 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
- [#3995](https://github.com/ignite/cli/pull/3995) Fix interface check for ibc modules
- [#3953](https://github.com/ignite/cli/pull/3953) Fix apps `Stdout` is redirected to `Stderr`
- [#3863](https://github.com/ignite/cli/pull/3963) Fix breaking issue for app client API when reading app chain info
- [#4112](https://github.com/ignite/cli/pull/4112) Remove duplicate SetCmdClientContextHandler

## [`v28.2.0`](https://github.com/ignite/cli/releases/tag/v28.2.0)

Expand Down
2 changes: 0 additions & 2 deletions ignite/pkg/cosmosgen/template.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ var (

templateTSClientRoot = newTemplateWriter("root")
templateTSClientModule = newTemplateWriter("module")
templateTSClientVue = newTemplateWriter("vue")
templateTSClientVueRoot = newTemplateWriter("vue-root")
templateTSClientComposable = newTemplateWriter("composable")
templateTSClientComposableRoot = newTemplateWriter("composable-root")
)
Expand Down
8 changes: 0 additions & 8 deletions ignite/services/chain/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -308,14 +308,6 @@ func (c *Chain) Generate(
return nil
}

func (c Chain) joinGeneratedPath(rootPath string) string {
if filepath.IsAbs(rootPath) {
return filepath.Join(rootPath, "generated")
}

return filepath.Join(c.app.Path, rootPath, "generated")
}

func (c Chain) saveClientConfig(client base.Client) error {
path := c.ConfigPath()
file, err := os.Open(path)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,6 @@ func NewRootCmd() *cobra.Command {
return err
}

if err := client.SetCmdClientContextHandler(clientCtx, cmd); err != nil {
return err
}

customAppTemplate, customAppConfig := initAppConfig()
customCMTConfig := initCometBFTConfig()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,6 @@ func NewRootCmd() *cobra.Command {
return err
}

if err := client.SetCmdClientContextHandler(clientCtx, cmd); err != nil {
return err
}

customAppTemplate, customAppConfig := initAppConfig()
customCMTConfig := initCometBFTConfig()

Expand Down

0 comments on commit 2828366

Please sign in to comment.