-
Notifications
You must be signed in to change notification settings - Fork 204
/
genesis.go
41 lines (34 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
40
41
package types
import (
"fmt"
host "github.com/cosmos/ibc-go/v5/modules/core/24-host"
)
// DefaultIndex is the default capability global index
const DefaultIndex uint64 = 1
// DefaultGenesis returns the default Capability genesis state
func DefaultGenesis() *GenesisState {
return &GenesisState{
PortId: PortID,
CallbackDataList: []CallbackData{},
// 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 {
if err := host.PortIdentifierValidator(gs.PortId); err != nil {
return err
}
// Check for duplicated index in callbackData
callbackDataIndexMap := make(map[string]struct{})
for _, elem := range gs.CallbackDataList {
index := string(CallbackDataKey(elem.CallbackKey))
if _, ok := callbackDataIndexMap[index]; ok {
return fmt.Errorf("duplicated index for callbackData")
}
callbackDataIndexMap[index] = struct{}{}
}
// this line is used by starport scaffolding # genesis/types/validate
return gs.Params.Validate()
}