Skip to content

Commit

Permalink
chore(x/upgrade): Use cosmossdk.io/core/codec instead of `github.co…
Browse files Browse the repository at this point in the history
…m/cosmos/cosmos-sdk/codec` (#23261)

Co-authored-by: Marko <marko@baricevic.me>
(cherry picked from commit ea78b3c)

# Conflicts:
#	x/upgrade/depinject.go
  • Loading branch information
TropicalDog17 authored and mergify[bot] committed Jan 9, 2025
1 parent c0e94ff commit ae40b89
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions x/upgrade/depinject.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,19 @@ import (
modulev1 "cosmossdk.io/api/cosmos/upgrade/module/v1"
"cosmossdk.io/core/address"
"cosmossdk.io/core/appmodule"
"cosmossdk.io/core/codec"
coreserver "cosmossdk.io/core/server"
"cosmossdk.io/depinject"
"cosmossdk.io/depinject/appconfig"
"cosmossdk.io/x/upgrade/keeper"
"cosmossdk.io/x/upgrade/types"

"github.com/cosmos/cosmos-sdk/client/flags"
<<<<<<< HEAD
"github.com/cosmos/cosmos-sdk/codec"
"github.com/cosmos/cosmos-sdk/server"
=======
>>>>>>> ea78b3c5b (chore(x/upgrade): Use `cosmossdk.io/core/codec` instead of `github.com/cosmos/cosmos-sdk/codec` (#23261))
"github.com/cosmos/cosmos-sdk/types/module"
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
)
Expand Down
2 changes: 1 addition & 1 deletion x/upgrade/keeper/keeper.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ import (
"github.com/hashicorp/go-metrics"

"cosmossdk.io/core/appmodule"
"cosmossdk.io/core/codec"
"cosmossdk.io/core/server"
errorsmod "cosmossdk.io/errors"
"cosmossdk.io/store/prefix"
storetypes "cosmossdk.io/store/types"
"cosmossdk.io/x/upgrade/types"

"github.com/cosmos/cosmos-sdk/codec"
"github.com/cosmos/cosmos-sdk/runtime"
"github.com/cosmos/cosmos-sdk/telemetry"
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
Expand Down

0 comments on commit ae40b89

Please sign in to comment.