forked from CosmWasm/wasmd
-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Description
Description
The current version of wasmd depends on the bankplus
feature, which is an original functionality of the finschia-sdk.
Since the finschia-sdk is currently undergoing a version bump, we will use mocks to handle this dependency in the meantime.
This PR related to Finschia/finschia-sdk#1195, Finschia/finschia-sdk#1212
The parts that use bankplus are located in the following files:
- app/app.go
- appplus/app.go
- x/wasm/keeper/genesis_test.go
- x/wasm/keeper/options_test.go
- x/wasm/keeper/test_common.go
- x/wasmplus/keeper/genesis_test.go
- x/wasmplus/keeper/keeper.go
- x/wasmplus/keeper/test_common.go
The NewBaseKeeper
interface will be modified as follows:
Before:
func NewBaseKeeper(
cdc codec.Codec, storeKey sdk.StoreKey, ak types.AccountKeeper, paramSpace paramtypes.Subspace,
blockedAddr map[string]bool, deactMultiSend bool,
) BaseKeeper
After:
func NewBaseKeeper(
cdc codec.Codec, storeService store.KVStoreService, ak types.AccountKeeper,
blockedAddr map[string]bool, deactMultiSend bool, authority string, logger log.Logger,
) BaseKeeper
Metadata
Metadata
Assignees
Labels
No labels