Skip to content

Commit

Permalink
use expected keeper within NewKeeper
Browse files Browse the repository at this point in the history
  • Loading branch information
Reecepbcups committed Feb 22, 2024
1 parent 19e8b2f commit 84dabb3
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions keeper/keeper.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper"
minttypes "github.com/cosmos/cosmos-sdk/x/mint/types"
slashingkeeper "github.com/cosmos/cosmos-sdk/x/slashing/keeper"
stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper"
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"

Expand Down Expand Up @@ -46,8 +44,8 @@ func NewKeeper(
cdc codec.BinaryCodec,
storeService storetypes.KVStoreService,
sk *stakingkeeper.Keeper,
slk slashingkeeper.Keeper,
bk bankkeeper.Keeper,
slk SlashingKeeper,
bk BankKeeper,
validatorAddressCodec addresscodec.Codec,
logger log.Logger,
) Keeper {
Expand Down

0 comments on commit 84dabb3

Please sign in to comment.