Skip to content

Commit 43c90e3

Browse files
authored
fix: no-cgo keeper signature (#2079)
1 parent aafd0e0 commit 43c90e3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

x/wasm/keeper/keeper_no_cgo.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
package keeper
44

55
import (
6-
storetypes "cosmossdk.io/store/types"
6+
corestoretypes "cosmossdk.io/core/store"
77

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

@@ -14,7 +14,7 @@ import (
1414
// If customEncoders is non-nil, we can use this to override some of the message handler, especially custom
1515
func NewKeeper(
1616
cdc codec.Codec,
17-
storeKey storetypes.StoreKey,
17+
storeService corestoretypes.KVStoreService,
1818
accountKeeper types.AccountKeeper,
1919
bankKeeper types.BankKeeper,
2020
stakingKeeper types.StakingKeeper,
@@ -29,7 +29,7 @@ func NewKeeper(
2929
homeDir string,
3030
nodeConfig types.NodeConfig,
3131
vmConfig types.VMConfig,
32-
availableCapabilities string,
32+
availableCapabilities []string,
3333
authority string,
3434
opts ...Option,
3535
) Keeper {

0 commit comments

Comments
 (0)