Skip to content

Commit

Permalink
Fix package alias
Browse files Browse the repository at this point in the history
  • Loading branch information
ulbqb committed Mar 7, 2024
1 parent bd00435 commit 5d0b5ce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions x/foundation/module/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
paramstypes "github.com/cosmos/cosmos-sdk/x/params/types"
staking "github.com/cosmos/cosmos-sdk/x/staking/types"
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"

modulev1 "github.com/Finschia/finschia-sdk/api/lbm/foundation/module/v1"
"github.com/Finschia/finschia-sdk/x/foundation"
Expand Down Expand Up @@ -220,7 +220,7 @@ type FoundationOutputs struct {

Keeper keeper.Keeper
Module appmodule.AppModule
Hooks staking.StakingHooksWrapper
Hooks stakingtypes.StakingHooksWrapper
}

func ProvideModule(in FoundationInputs) FoundationOutputs {
Expand Down Expand Up @@ -252,7 +252,7 @@ func ProvideModule(in FoundationInputs) FoundationOutputs {
return FoundationOutputs{
Keeper: k,
Module: m,
Hooks: staking.StakingHooksWrapper{StakingHooks: k.Hooks()},
Hooks: stakingtypes.StakingHooksWrapper{StakingHooks: k.Hooks()},
}
}

Expand Down

0 comments on commit 5d0b5ce

Please sign in to comment.