Skip to content

Commit

Permalink
refactor!: downgrade nightly to 0.50 (#4507)
Browse files Browse the repository at this point in the history
* refactor!: downgrade nightly to 0.50

* updates

* sims

* use error v1

* remove simsx imports

* updates

* bump ibc to beta.0

* updates

* updates

* updates

* updates

* fix

* updates

* fixes

* env

* lint

* updates

* updates

* updates

* revert go bump

* fixes

* updates

* go version

* fix sims

* sims + failing test

* fixes

* updates
  • Loading branch information
julienrbrt authored Feb 20, 2025
1 parent 5bbc1a1 commit ac62a79
Show file tree
Hide file tree
Showing 74 changed files with 1,829 additions and 1,528 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-cov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

- uses: actions/setup-go@v5
with:
go-version: "1.23.5"
go-version: "1.23.6"

- run: ./scripts/test-coverage

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

- uses: actions/setup-go@v5
with:
go-version: "1.23.5"
go-version: "1.23.6"

- name: Run Integration Tests
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ jobs:

- uses: actions/setup-go@v5
with:
go-version: "1.23.5"
go-version: "1.23.6"

- run: ./scripts/test
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
- [#4326](https://github.com/ignite/cli/pull/4326) Add `buf.build` version to `ignite version` command
- [#4436](https://github.com/ignite/cli/pull/4436) Return tx hash to the faucet API
- [#4437](https://github.com/ignite/cli/pull/4437) Remove module placeholders
- [#4289](https://github.com/ignite/cli/pull/4289), [#4423](https://github.com/ignite/cli/pull/4423), [#4432](https://github.com/ignite/cli/pull/4432) Cosmos SDK v0.52 support
- [#4289](https://github.com/ignite/cli/pull/4289), [#4423](https://github.com/ignite/cli/pull/4423), [#4432](https://github.com/ignite/cli/pull/4432), [#4507](https://github.com/ignite/cli/pull/4507) Cosmos SDK v0.52 support and downgrade back to 0.50, while keeping latest improvements.
- [#4480](https://github.com/ignite/cli/pull/4480) Add field max length
- [#4477](https://github.com/ignite/cli/pull/4477) IBC v10 support
- [#4166](https://github.com/ignite/cli/issues/4166) Migrate buf config files to v2
Expand Down
121 changes: 56 additions & 65 deletions go.mod

Large diffs are not rendered by default.

402 changes: 273 additions & 129 deletions go.sum

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions ignite/cmd/chain_simulate.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ func newConfigFromFlags(cmd *cobra.Command) simulation.Config {
exportStatePath, _ = cmd.Flags().GetString(flagSimappExportStatePath)
exportStatsPath, _ = cmd.Flags().GetString(flagSimappExportStatsPath)
seed, _ = cmd.Flags().GetInt64(flagSimappSeed)
initialBlockHeight, _ = cmd.Flags().GetUint64(flagSimappInitialBlockHeight)
numBlocks, _ = cmd.Flags().GetUint64(flagSimappNumBlocks)
initialBlockHeight, _ = cmd.Flags().GetInt(flagSimappInitialBlockHeight)
numBlocks, _ = cmd.Flags().GetInt(flagSimappNumBlocks)
blockSize, _ = cmd.Flags().GetInt(flagSimappBlockSize)
lean, _ = cmd.Flags().GetBool(flagSimappLean)
)
Expand Down Expand Up @@ -108,8 +108,8 @@ func simappFlags(c *cobra.Command) {
c.Flags().String(flagSimappExportStatePath, "", "custom file path to save the exported app state JSON")
c.Flags().String(flagSimappExportStatsPath, "", "custom file path to save the exported simulation statistics JSON")
c.Flags().Int64(flagSimappSeed, 42, "simulation random seed")
c.Flags().Uint64(flagSimappInitialBlockHeight, 1, "initial block to start the simulation")
c.Flags().Uint64(flagSimappNumBlocks, 200, "number of new blocks to simulate from the initial block height")
c.Flags().Int(flagSimappInitialBlockHeight, 1, "initial block to start the simulation")
c.Flags().Int(flagSimappNumBlocks, 200, "number of new blocks to simulate from the initial block height")
c.Flags().Int(flagSimappBlockSize, 30, "operations per block")
c.Flags().Bool(flagSimappLean, false, "lean simulation log output")

Expand Down
2 changes: 1 addition & 1 deletion ignite/internal/tools/gen-config-doc/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/ignite/cli/ignite/internal/tools/gen-config-doc

go 1.23.4

toolchain go1.23.5
toolchain go1.23.6

replace (
github.com/cosmos/cosmos-sdk => github.com/cosmos/cosmos-sdk v0.52.0-rc.2
Expand Down
1 change: 0 additions & 1 deletion ignite/pkg/chaincmd/chaincmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,6 @@ func (c ChainCmd) UnsafeResetCommand() step.Option {
// ExportCommand returns the command to export the state of the blockchain into a genesis file.
func (c ChainCmd) ExportCommand() step.Option {
command := []string{
commandGenesis,
commandExportGenssis,
}
return c.daemonCommand(command)
Expand Down
4 changes: 2 additions & 2 deletions ignite/pkg/chaincmd/runner/simulate.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ func (r Runner) Simulation(
chaincmd.SimappWithExportStatePath(config.ExportStatePath),
chaincmd.SimappWithExportStatsPath(config.ExportStatsPath),
chaincmd.SimappWithSeed(config.Seed),
chaincmd.SimappWithInitialBlockHeight(config.InitialBlockHeight),
chaincmd.SimappWithNumBlocks(config.NumBlocks),
chaincmd.SimappWithInitialBlockHeight(uint64(config.InitialBlockHeight)),
chaincmd.SimappWithNumBlocks(uint64(config.NumBlocks)),
chaincmd.SimappWithBlockSize(config.BlockSize),
chaincmd.SimappWithLean(config.Lean),
chaincmd.SimappWithCommit(config.Commit),
Expand Down
32 changes: 16 additions & 16 deletions ignite/pkg/cosmosanalysis/app/app_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ func TestCheckKeeper(t *testing.T) {
func TestFindRegisteredModules(t *testing.T) {
basicModules := []string{
"github.com/cosmos/cosmos-sdk/x/auth",
"cosmossdk.io/x/bank",
"cosmossdk.io/x/staking",
"cosmossdk.io/x/gov",
"github.com/cosmos/cosmos-sdk/x/bank",
"github.com/cosmos/cosmos-sdk/x/staking",
"github.com/cosmos/cosmos-sdk/x/gov",
"github.com/username/test/x/foo",
"github.com/cosmos/cosmos-sdk/x/auth/tx",
"github.com/cosmos/cosmos-sdk/client/grpc/tmservice",
Expand Down Expand Up @@ -117,17 +117,17 @@ func TestFindRegisteredModules(t *testing.T) {
"github.com/cosmos/cosmos-sdk/x/auth/tx",
"github.com/cosmos/cosmos-sdk/x/auth/tx/config",
"github.com/cosmos/cosmos-sdk/x/auth/vesting",
"cosmossdk.io/x/authz/module",
"cosmossdk.io/x/bank",
"cosmossdk.io/x/consensus",
"cosmossdk.io/x/distribution",
"cosmossdk.io/x/group/module",
"cosmossdk.io/x/mint",
"cosmossdk.io/x/params",
"cosmossdk.io/x/slashing",
"cosmossdk.io/x/staking",
"github.com/cosmos/cosmos-sdk/x/authz/module",
"github.com/cosmos/cosmos-sdk/x/bank",
"github.com/cosmos/cosmos-sdk/x/consensus",
"github.com/cosmos/cosmos-sdk/x/distribution",
"github.com/cosmos/cosmos-sdk/x/group/module",
"github.com/cosmos/cosmos-sdk/x/mint",
"github.com/cosmos/cosmos-sdk/x/params",
"github.com/cosmos/cosmos-sdk/x/slashing",
"github.com/cosmos/cosmos-sdk/x/staking",
"github.com/ignite/mars/x/mars",
"cosmossdk.io/x/gov",
"github.com/cosmos/cosmos-sdk/x/gov",
"github.com/username/test/x/foo",
"github.com/cosmos/cosmos-sdk/client/grpc/tmservice",
"github.com/cosmos/cosmos-sdk/client/grpc/node",
Expand All @@ -147,9 +147,9 @@ func TestFindRegisteredModules(t *testing.T) {
func TestDiscoverModules(t *testing.T) {
basicModules := []string{
"github.com/cosmos/cosmos-sdk/x/auth",
"cosmossdk.io/x/bank",
"cosmossdk.io/x/staking",
"cosmossdk.io/x/gov",
"github.com/cosmos/cosmos-sdk/x/bank",
"github.com/cosmos/cosmos-sdk/x/staking",
"github.com/cosmos/cosmos-sdk/x/gov",
"github.com/username/test/x/foo",
"github.com/cosmos/cosmos-sdk/x/auth/tx",
"github.com/cosmos/cosmos-sdk/client/grpc/tmservice",
Expand Down
50 changes: 25 additions & 25 deletions ignite/pkg/cosmosanalysis/app/testdata/app_di.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,37 +12,12 @@ import (
"cosmossdk.io/depinject"
"cosmossdk.io/log"
storetypes "cosmossdk.io/store/types"
authzkeeper "cosmossdk.io/x/authz/keeper"
authzmodule "cosmossdk.io/x/authz/module"
"cosmossdk.io/x/bank"
bankkeeper "cosmossdk.io/x/bank/keeper"
consensus "cosmossdk.io/x/consensus"
consensuskeeper "cosmossdk.io/x/consensus/keeper"
distr "cosmossdk.io/x/distribution"
distrkeeper "cosmossdk.io/x/distribution/keeper"
"cosmossdk.io/x/evidence"
evidencekeeper "cosmossdk.io/x/evidence/keeper"
feegrantkeeper "cosmossdk.io/x/feegrant/keeper"
feegrantmodule "cosmossdk.io/x/feegrant/module"
"cosmossdk.io/x/genutil"
genutiltypes "cosmossdk.io/x/genutil/types"
"cosmossdk.io/x/gov"
govclient "cosmossdk.io/x/gov/client"
govkeeper "cosmossdk.io/x/gov/keeper"
groupkeeper "cosmossdk.io/x/group/keeper"
groupmodule "cosmossdk.io/x/group/module"
"cosmossdk.io/x/mint"
mintkeeper "cosmossdk.io/x/mint/keeper"
nftkeeper "cosmossdk.io/x/nft/keeper"
nftmodule "cosmossdk.io/x/nft/module"
"cosmossdk.io/x/params"
paramsclient "cosmossdk.io/x/params/client"
paramskeeper "cosmossdk.io/x/params/keeper"
paramstypes "cosmossdk.io/x/params/types"
"cosmossdk.io/x/slashing"
slashingkeeper "cosmossdk.io/x/slashing/keeper"
"cosmossdk.io/x/staking"
stakingkeeper "cosmossdk.io/x/staking/keeper"
"cosmossdk.io/x/upgrade"
upgradekeeper "cosmossdk.io/x/upgrade/keeper"
dbm "github.com/cosmos/cosmos-db"
Expand All @@ -63,6 +38,31 @@ import (
_ "github.com/cosmos/cosmos-sdk/x/auth/tx/config" // import for side-effects
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
"github.com/cosmos/cosmos-sdk/x/auth/vesting"
authzkeeper "github.com/cosmos/cosmos-sdk/x/authz/keeper"
authzmodule "github.com/cosmos/cosmos-sdk/x/authz/module"
"github.com/cosmos/cosmos-sdk/x/bank"
bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper"
consensus "github.com/cosmos/cosmos-sdk/x/consensus"
consensuskeeper "github.com/cosmos/cosmos-sdk/x/consensus/keeper"
distr "github.com/cosmos/cosmos-sdk/x/distribution"
distrkeeper "github.com/cosmos/cosmos-sdk/x/distribution/keeper"
"github.com/cosmos/cosmos-sdk/x/genutil"
genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types"
"github.com/cosmos/cosmos-sdk/x/gov"
govclient "github.com/cosmos/cosmos-sdk/x/gov/client"
govkeeper "github.com/cosmos/cosmos-sdk/x/gov/keeper"
groupkeeper "github.com/cosmos/cosmos-sdk/x/group/keeper"
groupmodule "github.com/cosmos/cosmos-sdk/x/group/module"
"github.com/cosmos/cosmos-sdk/x/mint"
mintkeeper "github.com/cosmos/cosmos-sdk/x/mint/keeper"
"github.com/cosmos/cosmos-sdk/x/params"
paramsclient "github.com/cosmos/cosmos-sdk/x/params/client"
paramskeeper "github.com/cosmos/cosmos-sdk/x/params/keeper"
paramstypes "github.com/cosmos/cosmos-sdk/x/params/types"
"github.com/cosmos/cosmos-sdk/x/slashing"
slashingkeeper "github.com/cosmos/cosmos-sdk/x/slashing/keeper"
"github.com/cosmos/cosmos-sdk/x/staking"
stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper"
abci "github.com/tendermint/tendermint/abci/types"
)

Expand Down
2 changes: 1 addition & 1 deletion ignite/pkg/cosmosanalysis/app/testdata/app_generic.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package foo

import (
paramstypes "cosmossdk.io/x/params/types"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/codec"
storetypes "github.com/cosmos/cosmos-sdk/store/types"
sdk "github.com/cosmos/cosmos-sdk/types"
paramstypes "github.com/cosmos/cosmos-sdk/x/params/types"
abci "github.com/tendermint/tendermint/abci/types"

app "github.com/ignite/cli/v29/ignite/pkg/cosmosanalysis/app/testdata/modules/registration_not_in_app_go"
Expand Down
2 changes: 1 addition & 1 deletion ignite/pkg/cosmosanalysis/app/testdata/app_minimal.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package foo

import (
paramstypes "cosmossdk.io/x/params/types"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/codec"
storetypes "github.com/cosmos/cosmos-sdk/store/types"
sdk "github.com/cosmos/cosmos-sdk/types"
paramstypes "github.com/cosmos/cosmos-sdk/x/params/types"
abci "github.com/tendermint/tendermint/abci/types"

app "github.com/ignite/cli/v29/ignite/pkg/cosmosanalysis/app/testdata/modules/registration_not_in_app_go"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
package app

import (
bankkeeper "cosmossdk.io/x/bank/keeper"
govkeeper "cosmossdk.io/x/gov/keeper"
paramstypes "cosmossdk.io/x/params/types"
stakingkeeper "cosmossdk.io/x/staking/keeper"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/server"
"github.com/cosmos/cosmos-sdk/server/api"
Expand All @@ -13,6 +9,10 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/module"
authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper"
bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper"
govkeeper "github.com/cosmos/cosmos-sdk/x/gov/keeper"
paramstypes "github.com/cosmos/cosmos-sdk/x/params/types"
stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper"
"github.com/gogo/protobuf/codec"
abci "github.com/tendermint/tendermint/abci/types"
fookeeper "github.com/username/test/x/foo/keeper"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,42 +25,42 @@ import (
vestingmodulev1 "cosmossdk.io/api/cosmos/vesting/module/v1"
"cosmossdk.io/depinject"
"cosmossdk.io/depinject/appconfig"
"cosmossdk.io/x/authz"
_ "cosmossdk.io/x/authz/module" // import for side-effects
_ "cosmossdk.io/x/bank" // import for side-effects
banktypes "cosmossdk.io/x/bank/types"
_ "cosmossdk.io/x/circuit" // import for side-effects
circuittypes "cosmossdk.io/x/circuit/types"
_ "cosmossdk.io/x/consensus" // import for side-effects
consensustypes "cosmossdk.io/x/consensus/types"
_ "cosmossdk.io/x/distribution" // import for side-effects
distrtypes "cosmossdk.io/x/distribution/types"
_ "cosmossdk.io/x/evidence" // import for side-effects
evidencetypes "cosmossdk.io/x/evidence/types"
"cosmossdk.io/x/feegrant"
_ "cosmossdk.io/x/feegrant/module" // import for side-effects
"cosmossdk.io/x/genutil"
genutiltypes "cosmossdk.io/x/genutil/types"
"cosmossdk.io/x/gov"
govtypes "cosmossdk.io/x/gov/types"
"cosmossdk.io/x/group"
_ "cosmossdk.io/x/group/module" // import for side-effects
_ "cosmossdk.io/x/mint" // import for side-effects
minttypes "cosmossdk.io/x/mint/types"
_ "cosmossdk.io/x/params" // import for side-effects
paramstypes "cosmossdk.io/x/params/types"
_ "cosmossdk.io/x/slashing" // import for side-effects
slashingtypes "cosmossdk.io/x/slashing/types"
_ "cosmossdk.io/x/staking" // import for side-effects
stakingtypes "cosmossdk.io/x/staking/types"
_ "cosmossdk.io/x/upgrade" // import for side-effects
_ "cosmossdk.io/x/upgrade" // import for side-effects
upgradetypes "cosmossdk.io/x/upgrade/types"
"github.com/cosmos/cosmos-sdk/runtime"
"github.com/cosmos/cosmos-sdk/types/module"
_ "github.com/cosmos/cosmos-sdk/x/auth/tx/config" // import for side-effects
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
_ "github.com/cosmos/cosmos-sdk/x/auth/vesting" // import for side-effects
vestingtypes "github.com/cosmos/cosmos-sdk/x/auth/vesting/types"
"github.com/cosmos/cosmos-sdk/x/authz"
_ "github.com/cosmos/cosmos-sdk/x/authz/module" // import for side-effects
_ "github.com/cosmos/cosmos-sdk/x/bank" // import for side-effects
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
_ "github.com/cosmos/cosmos-sdk/x/consensus" // import for side-effects
consensustypes "github.com/cosmos/cosmos-sdk/x/consensus/types"
_ "github.com/cosmos/cosmos-sdk/x/distribution" // import for side-effects
distrtypes "github.com/cosmos/cosmos-sdk/x/distribution/types"
"github.com/cosmos/cosmos-sdk/x/genutil"
genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types"
"github.com/cosmos/cosmos-sdk/x/gov"
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
"github.com/cosmos/cosmos-sdk/x/group"
_ "github.com/cosmos/cosmos-sdk/x/group/module" // import for side-effects
_ "github.com/cosmos/cosmos-sdk/x/mint" // import for side-effects
minttypes "github.com/cosmos/cosmos-sdk/x/mint/types"
_ "github.com/cosmos/cosmos-sdk/x/params" // import for side-effects
paramstypes "github.com/cosmos/cosmos-sdk/x/params/types"
_ "github.com/cosmos/cosmos-sdk/x/slashing" // import for side-effects
slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types"
_ "github.com/cosmos/cosmos-sdk/x/staking" // import for side-effects
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types"
icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types"
ibcfeetypes "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types"
Expand Down
18 changes: 9 additions & 9 deletions ignite/pkg/cosmosanalysis/app/testdata/modules/runtime/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,6 @@ package app
import (
"cosmossdk.io/api/tendermint/abci"
"cosmossdk.io/client/v2/autocli"
"cosmossdk.io/x/bank"
bankkeeper "cosmossdk.io/x/bank/keeper"
"cosmossdk.io/x/gov"
govclient "cosmossdk.io/x/gov/client"
govkeeper "cosmossdk.io/x/gov/keeper"
paramsclient "cosmossdk.io/x/params/client"
paramstypes "cosmossdk.io/x/params/types"
"cosmossdk.io/x/staking"
stakingkeeper "cosmossdk.io/x/staking/keeper"
"github.com/cosmos/cosmos-sdk/client"
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
"github.com/cosmos/cosmos-sdk/runtime"
Expand All @@ -23,6 +14,15 @@ import (
"github.com/cosmos/cosmos-sdk/types/module"
"github.com/cosmos/cosmos-sdk/x/auth"
authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper"
"github.com/cosmos/cosmos-sdk/x/bank"
bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper"
"github.com/cosmos/cosmos-sdk/x/gov"
govclient "github.com/cosmos/cosmos-sdk/x/gov/client"
govkeeper "github.com/cosmos/cosmos-sdk/x/gov/keeper"
paramsclient "github.com/cosmos/cosmos-sdk/x/params/client"
paramstypes "github.com/cosmos/cosmos-sdk/x/params/types"
"github.com/cosmos/cosmos-sdk/x/staking"
stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper"
"github.com/gogo/protobuf/codec"
foomodule "github.com/username/test/x/foo"
fookeeper "github.com/username/test/x/foo/keeper"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
package app

import (
bankkeeper "cosmossdk.io/x/bank/keeper"
govkeeper "cosmossdk.io/x/gov/keeper"
paramstypes "cosmossdk.io/x/params/types"
stakingkeeper "cosmossdk.io/x/staking/keeper"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/server"
"github.com/cosmos/cosmos-sdk/server/api"
Expand All @@ -13,6 +9,10 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/module"
authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper"
bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper"
govkeeper "github.com/cosmos/cosmos-sdk/x/gov/keeper"
paramstypes "github.com/cosmos/cosmos-sdk/x/params/types"
stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper"
ibckeeper "github.com/cosmos/ibc-go/v7/modules/core/keeper"
"github.com/gogo/protobuf/codec"
abci "github.com/tendermint/tendermint/abci/types"
Expand Down
2 changes: 1 addition & 1 deletion ignite/pkg/cosmosanalysis/app/testdata/two_app.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package foo

import (
paramstypes "cosmossdk.io/x/params/types"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/codec"
storetypes "github.com/cosmos/cosmos-sdk/store/types"
sdk "github.com/cosmos/cosmos-sdk/types"
paramstypes "github.com/cosmos/cosmos-sdk/x/params/types"
abci "github.com/tendermint/tendermint/abci/types"

app "github.com/ignite/cli/v29/ignite/pkg/cosmosanalysis/app/testdata/modules/registration_not_in_app_go"
Expand Down
Loading

0 comments on commit ac62a79

Please sign in to comment.