Skip to content

Commit

Permalink
remove redundant import
Browse files Browse the repository at this point in the history
  • Loading branch information
dongsam committed May 31, 2021
1 parent 8e99dcd commit cc2cdbf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ import (
"github.com/cosmos/cosmos-sdk/x/upgrade"
upgradeclient "github.com/cosmos/cosmos-sdk/x/upgrade/client"
upgradekeeper "github.com/cosmos/cosmos-sdk/x/upgrade/keeper"
sdkupgrade "github.com/cosmos/cosmos-sdk/x/upgrade/types"
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"
"github.com/gorilla/mux"
"github.com/rakyll/statik/fs"
Expand Down Expand Up @@ -427,7 +426,7 @@ func NewLiquidityApp(
)
app.SetEndBlocker(app.EndBlocker)
app.UpgradeKeeper.SetUpgradeHandler("Gravity-DEX",
func(ctx sdk.Context, plan sdkupgrade.Plan) {
func(ctx sdk.Context, plan upgradetypes.Plan) {
var genState liquiditytypes.GenesisState
genState.Params = liquiditytypes.DefaultParams()
app.LiquidityKeeper.InitGenesis(ctx, genState)
Expand Down

0 comments on commit cc2cdbf

Please sign in to comment.