-
Notifications
You must be signed in to change notification settings - Fork 206
/
genesis.go
39 lines (32 loc) · 998 Bytes
/
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 types
import (
"fmt"
)
// DefaultIndex is the default capability global index
const DefaultIndex uint64 = 1
// DefaultGenesis returns the default Capability genesis state
func DefaultGenesis() *GenesisState {
return &GenesisState{
SpecList: []Spec{},
// this line is used by starport scaffolding # genesis/types/default
Params: DefaultParams(),
}
}
// Validate performs basic genesis state validation returning an error upon any
// failure.
func (gs GenesisState) Validate() error {
// Check for duplicated ID in spec
SpecIndexMap := make(map[string]struct{})
for _, elem := range gs.SpecList {
index := string(SpecKey(elem.Index))
if _, ok := SpecIndexMap[index]; ok {
return fmt.Errorf("duplicated index for Spec")
}
SpecIndexMap[index] = struct{}{}
}
if gs.SpecCount != uint64(len(gs.SpecList)) {
return fmt.Errorf("Spec count mismatch spec list")
}
// this line is used by starport scaffolding # genesis/types/validate
return gs.Params.Validate()
}