package committee import ( "fmt" sdk "github.com/cosmos/cosmos-sdk/types" ) // InitGenesis initializes the store state from a genesis state. func InitGenesis(ctx sdk.Context, keeper Keeper, gs GenesisState) { if err := gs.Validate(); err != nil { panic(fmt.Sprintf("failed to validate %s genesis state: %s", ModuleName, err)) } keeper.SetNextProposalID(ctx, gs.NextProposalID) // TODO set votes, committee, proposals } // ExportGenesis returns a GenesisState for a given context and keeper. func ExportGenesis(ctx sdk.Context, keeper Keeper) GenesisState { // TODO return GenesisState{} }