Closed MSevey closed 1 month ago
i'm getting the same panic on ignite v28.5.1 and cannot figure out the workaround
see telegram chat for more info, summary is:
% rollkit start \
--rollkit.aggregator \
--rollkit.da_auth_token $AUTH_TOKEN \
--rollkit.da_namespace $DA_NAMESPACE \
--rollkit.da_start_height $DA_BLOCK_HEIGHT \
--minimum-gas-prices="0.025stake" \
--rollkit.da_address http://localhost:26658
panic: proto: could not resolve import "core/crypto/pb/crypto.proto": not found
goroutine 1 [running]:
github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/keeper.newModuleQuerySafeAllowList()
/Users/js/go/pkg/mod/github.com/cosmos/ibc-go/v8@v8.3.1/modules/apps/27-interchain-accounts/host/keeper/keeper.go:287 +0x7c
github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/host/keeper.NewKeeper({0x1068a6528, _}, {_, _}, {_, _}, {_, _}, {_, _}, ...)
/Users/js/go/pkg/mod/github.com/cosmos/ibc-go/v8@v8.3.1/modules/apps/27-interchain-accounts/host/keeper/keeper.go:82 +0xa4
gm/app.(*App).registerIBCModules(0x1400087b608, {0x10687ed28?, 0x140000b0050?})
/Users/js/gm/app/ibc.go:118 +0x1b30
gm/app.New({0x106864728, 0x14000c043f0}, {0x10687ed28, 0x140000b0050}, {0x0, 0x0}, 0x1, {0x10681b620, 0x14000e50000}, {0x14000c044d0, ...})
/Users/js/gm/app/app.go:259 +0x604
gm/cmd/gmd/cmd.newApp({0x106864728, 0x14000c043f0}, {0x10687ed28, 0x140000b0050}, {0x0, 0x0}, {0x10681b620, 0x14000e50000})
/Users/js/gm/cmd/gmd/cmd/commands.go:140 +0x78
github.com/rollkit/cosmos-sdk-starter/server.startApp[...](0x14001521ec0, 0x106805ba8, {0x1068062e0, 0x0, 0x0, 0x106805ba0, 0x106805b88})
/Users/js/go/pkg/mod/github.com/rollkit/cosmos-sdk-starter@v0.0.0-20240826100644-1c45500296f4/server/start.go:77 +0x150
github.com/rollkit/cosmos-sdk-starter/server.StartHandler[...](_, {{0x0, 0x0, 0x0}, {0x1068866b0, 0x140008808d0}, 0x0, {0x0, 0x0}, {0x1068a6528, ...}, ...}, ...)
/Users/js/go/pkg/mod/github.com/rollkit/cosmos-sdk-starter@v0.0.0-20240826100644-1c45500296f4/server/start.go:49 +0xe8
github.com/cosmos/cosmos-sdk/server.StartCmdWithOptions.func2.1()
/Users/js/go/pkg/mod/github.com/cosmos/cosmos-sdk@v0.50.9/server/start.go:198 +0x68
github.com/cosmos/cosmos-sdk/server.wrapCPUProfile(0x14001521ec0, 0x1400150f9d8)
/Users/js/go/pkg/mod/github.com/cosmos/cosmos-sdk@v0.50.9/server/start.go:570 +0x16c
github.com/cosmos/cosmos-sdk/server.StartCmdWithOptions.func2(0x140013fb808, {0x140008ce780?, 0x0?, 0xc?})
/Users/js/go/pkg/mod/github.com/cosmos/cosmos-sdk@v0.50.9/server/start.go:197 +0x184
github.com/spf13/cobra.(*Command).execute(0x140013fb808, {0x140008ce480, 0xc, 0xc})
/Users/js/go/pkg/mod/github.com/spf13/cobra@v1.8.1/command.go:985 +0x840
github.com/spf13/cobra.(*Command).ExecuteC(0x14001217b08)
/Users/js/go/pkg/mod/github.com/spf13/cobra@v1.8.1/command.go:1117 +0x344
github.com/spf13/cobra.(*Command).Execute(...)
/Users/js/go/pkg/mod/github.com/spf13/cobra@v1.8.1/command.go:1041
github.com/spf13/cobra.(*Command).ExecuteContext(...)
/Users/js/go/pkg/mod/github.com/spf13/cobra@v1.8.1/command.go:1034
github.com/cosmos/cosmos-sdk/server/cmd.Execute(0x14001217b08, {0x104e71fd1, 0x2}, {0x16d71f8bb, 0xd})
/Users/js/go/pkg/mod/github.com/cosmos/cosmos-sdk@v0.50.9/server/cmd/execute.go:34 +0x154
main.main()
/Users/js/gm/cmd/gmd/main.go:16 +0x44
Error intercepting command: failed to run entrypoint: exit status 2
The workaround may be using ignite 28.4.0 from telegram message by @a26nine
Edit: and from the issue above 😅
I tried commenting out
if err != nil {
panic(err)
}
on $HOME/gm/gm/app/app.go
with no success
Root cause: https://github.com/ignite/cli/issues/4318
The following panic occurs on the wordle tutorial if you run with v28.5.0
we should keep the tutorial on v28.4.0 until we can resolve this issue.
Commenting out lines 261-263 in wordle/app/app.go get around the panic, but the effects of that are unknown.