mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
57 lines
1.2 KiB
Go
57 lines
1.2 KiB
Go
package council
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
errorsmod "cosmossdk.io/errors"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
"github.com/0glabs/0g-chain/x/council/v1/keeper"
|
|
"github.com/0glabs/0g-chain/x/council/v1/types"
|
|
)
|
|
|
|
// InitGenesis initializes the store state from a genesis state.
|
|
func InitGenesis(ctx sdk.Context, keeper keeper.Keeper, gs types.GenesisState) {
|
|
if err := gs.Validate(); err != nil {
|
|
panic(fmt.Sprintf("failed to validate %s genesis state: %s", types.ModuleName, err))
|
|
}
|
|
|
|
params := gs.Params
|
|
err := keeper.SetParams(ctx, params)
|
|
if err != nil {
|
|
panic(errorsmod.Wrapf(err, "error setting params"))
|
|
}
|
|
|
|
keeper.SetCurrentCouncilID(ctx, gs.CurrentCouncilID)
|
|
|
|
for _, p := range gs.Councils {
|
|
keeper.SetCouncil(ctx, p)
|
|
}
|
|
}
|
|
|
|
// ExportGenesis returns a GenesisState for a given context and keeper.
|
|
func ExportGenesis(ctx sdk.Context, keeper keeper.Keeper) *types.GenesisState {
|
|
startHeight, err := keeper.GetVotingStartHeight(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
period, err := keeper.GetVotingPeriod(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
currentID, err := keeper.GetCurrentCouncilID(ctx)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
return types.NewGenesisState(
|
|
keeper.GetParams(ctx),
|
|
startHeight,
|
|
period,
|
|
currentID,
|
|
keeper.GetCouncils(ctx),
|
|
)
|
|
}
|