Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
julienrbrt committed Sep 3, 2024
1 parent 4bf4fd2 commit 1576198
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ignite/cmd/scaffold_module.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ params.
c.Flags().StringSlice(flagParams, []string{}, "add module parameters")
c.Flags().StringSlice(flagModuleConfigs, []string{}, "add module configs")

c.Flags().MarkDeprecated(flagIBC, "IBC modules are temporarily not supported in Ignite v29 (waiting to IBC compatible version with Cosmos SDK v0.52)") // TODO: remove this line when IBC is supported
_ = c.Flags().MarkDeprecated(flagIBC, "IBC modules are temporarily not supported in Ignite v29 (waiting to IBC compatible version with Cosmos SDK v0.52)") // https://github.com/ignite/cli/pull/4289

return c
}
Expand Down
4 changes: 4 additions & 0 deletions integration/ibc/cmd_ibc_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ import (
)

func TestCreateModuleWithIBC(t *testing.T) {
t.Skip("skipping test as IBC isn't available with v0.52 yet") // https://github.com/ignite/cli/pull/4289

var (
env = envtest.New(t)
app = env.Scaffold("github.com/test/blogibc")
Expand Down Expand Up @@ -107,6 +109,8 @@ func TestCreateModuleWithIBC(t *testing.T) {
}

func TestCreateIBCPacket(t *testing.T) {
t.Skip("skipping test as IBC isn't available with v0.52 yet") // https://github.com/ignite/cli/pull/4289

var (
env = envtest.New(t)
app = env.Scaffold("github.com/test/blogibcb")
Expand Down

0 comments on commit 1576198

Please sign in to comment.