-
Notifications
You must be signed in to change notification settings - Fork 212
/
genesis.go
39 lines (31 loc) · 1.12 KB
/
genesis.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package provider
import (
sdk "github.com/cosmos/cosmos-sdk/types"
abci "github.com/tendermint/tendermint/abci/types"
types "github.com/akash-network/akash-api/go/node/staking/v1beta3"
"github.com/akash-network/node/x/staking/keeper"
)
// ValidateGenesis does validation check of the Genesis and returns error in case of failure
func ValidateGenesis(data *types.GenesisState) error {
return data.Params.Validate()
}
// DefaultGenesisState returns default genesis state as raw bytes for the provider
// module.
func DefaultGenesisState() *types.GenesisState {
return &types.GenesisState{
Params: types.DefaultParams(),
}
}
// InitGenesis initiate genesis state and return updated validator details
func InitGenesis(ctx sdk.Context, keeper keeper.IKeeper, data *types.GenesisState) []abci.ValidatorUpdate {
if err := keeper.SetParams(ctx, data.Params); err != nil {
panic(err)
}
return []abci.ValidatorUpdate{}
}
// ExportGenesis returns genesis state as raw bytes for the provider module
func ExportGenesis(ctx sdk.Context, k keeper.IKeeper) *types.GenesisState {
return &types.GenesisState{
Params: k.GetParams(ctx),
}
}