Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adapt non-cgo keeper with the latest changes in NewKeeper signature (release v0.53) #2080

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading