* feat: migrate x/capability to app wiring * added some fixes from Matt's PR + changed MemStoreKey * fix name * fix name * small change * rollback MemStoreKey change * Revert "rollback MemStoreKey change" This reverts commit ad191eaa4030cee77574f94f843993597b25a46c. * add suggestions by @aaronc * add IsSealed() * fix Co-authored-by: Aaron Craelius <aaron@regen.network>
16 lines
485 B
Protocol Buffer
16 lines
485 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package cosmos.capability.module.v1;
|
|
|
|
import "cosmos/app/v1alpha1/module.proto";
|
|
|
|
// Module is the config object of the capability module.
|
|
message Module {
|
|
option (cosmos.app.v1alpha1.module) = {
|
|
go_import: "github.com/cosmos/cosmos-sdk/x/capability"
|
|
};
|
|
|
|
// seal_keeper defines if keeper.Seal() will run on BeginBlock() to prevent further modules from creating a scoped
|
|
// keeper. For more details check x/capability/keeper.go.
|
|
bool seal_keeper = 1;
|
|
} |