Skip to content

Commit

Permalink
fix: no-cgo keeper signature (#2080)
Browse files Browse the repository at this point in the history
  • Loading branch information
madrezaz authored Jan 2, 2025
1 parent e5392ce commit c498a46
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions x/wasm/keeper/keeper_no_cgo.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
package keeper

import (
storetypes "cosmossdk.io/store/types"
corestoretypes "cosmossdk.io/core/store"

"github.com/cosmos/cosmos-sdk/codec"

Expand All @@ -14,7 +14,7 @@ import (
// If customEncoders is non-nil, we can use this to override some of the message handler, especially custom
func NewKeeper(
cdc codec.Codec,
storeKey storetypes.StoreKey,
storeService corestoretypes.KVStoreService,
accountKeeper types.AccountKeeper,
bankKeeper types.BankKeeper,
stakingKeeper types.StakingKeeper,
Expand All @@ -28,7 +28,7 @@ func NewKeeper(
_ GRPCQueryRouter,
homeDir string,
wasmConfig types.WasmConfig,
availableCapabilities string,
availableCapabilities []string,
authority string,
opts ...Option,
) Keeper {
Expand Down

0 comments on commit c498a46

Please sign in to comment.