package types import ( "bytes" "fmt" sdk "github.com/cosmos/cosmos-sdk/types" ) // GenesisState - all staking state that must be provided at genesis type GenesisState struct { StartingProposalID uint64 `json:"starting_proposal_id" yaml:"starting_proposal_id"` Deposits Deposits `json:"deposits" yaml:"deposits"` Votes Votes `json:"votes" yaml:"votes"` Proposals Proposals `json:"proposals" yaml:"proposals"` DepositParams DepositParams `json:"deposit_params" yaml:"deposit_params"` VotingParams VotingParams `json:"voting_params" yaml:"voting_params"` TallyParams TallyParams `json:"tally_params" yaml:"tally_params"` } // NewGenesisState creates a new genesis state for the governance module func NewGenesisState(startingProposalID uint64, dp DepositParams, vp VotingParams, tp TallyParams) GenesisState { return GenesisState{ StartingProposalID: startingProposalID, DepositParams: dp, VotingParams: vp, TallyParams: tp, } } // DefaultGenesisState defines the default governance genesis state func DefaultGenesisState() GenesisState { return NewGenesisState( DefaultStartingProposalID, DefaultDepositParams(), DefaultVotingParams(), DefaultTallyParams(), ) } // Equal checks whether two gov GenesisState structs are equivalent func (data GenesisState) Equal(data2 GenesisState) bool { b1 := ModuleCdc.MustMarshalBinaryBare(data) b2 := ModuleCdc.MustMarshalBinaryBare(data2) return bytes.Equal(b1, b2) } // IsEmpty returns true if a GenesisState is empty func (data GenesisState) IsEmpty() bool { return data.Equal(GenesisState{}) } // ValidateGenesis checks if parameters are within valid ranges func ValidateGenesis(data GenesisState) error { threshold := data.TallyParams.Threshold if threshold.IsNegative() || threshold.GT(sdk.OneDec()) { return fmt.Errorf("Governance vote threshold should be positive and less or equal to one, is %s", threshold.String()) } veto := data.TallyParams.Veto if veto.IsNegative() || veto.GT(sdk.OneDec()) { return fmt.Errorf("Governance vote veto threshold should be positive and less or equal to one, is %s", veto.String()) } if !data.DepositParams.MinDeposit.IsValid() { return fmt.Errorf("Governance deposit amount must be a valid sdk.Coins amount, is %s", data.DepositParams.MinDeposit.String()) } return nil }