2020-03-11 19:27:36 +00:00
|
|
|
package committee
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
2020-04-30 14:13:31 +00:00
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
"github.com/kava-labs/kava/x/committee/keeper"
|
2020-03-15 00:00:05 +00:00
|
|
|
"github.com/kava-labs/kava/x/committee/types"
|
2020-03-11 19:27:36 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// InitGenesis initializes the store state from a genesis state.
|
2022-01-08 00:39:27 +00:00
|
|
|
func InitGenesis(ctx sdk.Context, keeper keeper.Keeper, gs *types.GenesisState) {
|
2020-03-11 19:27:36 +00:00
|
|
|
if err := gs.Validate(); err != nil {
|
2022-01-08 00:39:27 +00:00
|
|
|
panic(fmt.Sprintf("failed to validate %s genesis state: %s", types.ModuleName, err))
|
2020-03-11 19:27:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
keeper.SetNextProposalID(ctx, gs.NextProposalID)
|
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
for _, com := range gs.GetCommittees() {
|
2020-03-15 00:00:05 +00:00
|
|
|
keeper.SetCommittee(ctx, com)
|
|
|
|
}
|
|
|
|
for _, p := range gs.Proposals {
|
|
|
|
keeper.SetProposal(ctx, p)
|
|
|
|
}
|
|
|
|
for _, v := range gs.Votes {
|
|
|
|
keeper.SetVote(ctx, v)
|
|
|
|
}
|
2020-03-11 19:27:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ExportGenesis returns a GenesisState for a given context and keeper.
|
2022-01-08 00:39:27 +00:00
|
|
|
func ExportGenesis(ctx sdk.Context, keeper keeper.Keeper) *types.GenesisState {
|
2020-03-15 00:00:05 +00:00
|
|
|
nextID, err := keeper.GetNextProposalID(ctx)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2020-04-27 14:04:47 +00:00
|
|
|
committees := keeper.GetCommittees(ctx)
|
|
|
|
proposals := keeper.GetProposals(ctx)
|
|
|
|
votes := keeper.GetVotes(ctx)
|
2020-03-15 00:00:05 +00:00
|
|
|
|
|
|
|
return types.NewGenesisState(
|
|
|
|
nextID,
|
|
|
|
committees,
|
|
|
|
proposals,
|
|
|
|
votes,
|
|
|
|
)
|
2020-03-11 19:27:36 +00:00
|
|
|
}
|