-
Notifications
You must be signed in to change notification settings - Fork 204
/
genesis.go
95 lines (90 loc) · 2.57 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
package types
import (
"errors"
"time"
)
func NewGenesisState(epochs []EpochInfo) *GenesisState {
return &GenesisState{Epochs: epochs}
}
var (
HOUR_EPOCH = "hour"
DAY_EPOCH = "day"
WEEK_EPOCH = "week"
STRIDE_EPOCH = "stride_epoch"
MINT_EPOCH = "mint"
)
// DefaultGenesis returns the default Capability genesis state
// The hour epoch was not included in the mainnet genesis config,
// but has been included here for local testing
func DefaultGenesis() *GenesisState {
epochs := []EpochInfo{
{
Identifier: WEEK_EPOCH,
StartTime: time.Time{},
Duration: time.Hour * 24 * 7,
CurrentEpoch: 0,
CurrentEpochStartHeight: 0,
CurrentEpochStartTime: time.Time{},
EpochCountingStarted: false,
},
{
Identifier: DAY_EPOCH,
StartTime: time.Time{},
Duration: time.Hour * 24,
CurrentEpoch: 0,
CurrentEpochStartHeight: 0,
CurrentEpochStartTime: time.Time{},
EpochCountingStarted: false,
},
{
Identifier: STRIDE_EPOCH,
StartTime: time.Time{},
Duration: time.Hour * 6,
CurrentEpoch: 0,
CurrentEpochStartHeight: 0,
CurrentEpochStartTime: time.Time{},
EpochCountingStarted: false,
},
{
Identifier: MINT_EPOCH,
StartTime: time.Time{},
Duration: time.Minute * 60,
CurrentEpoch: 0,
CurrentEpochStartHeight: 0,
CurrentEpochStartTime: time.Time{},
EpochCountingStarted: false,
},
{
Identifier: HOUR_EPOCH,
StartTime: time.Time{},
Duration: time.Hour,
CurrentEpoch: 0,
CurrentEpochStartHeight: 0,
CurrentEpochStartTime: time.Time{},
EpochCountingStarted: false,
},
}
return NewGenesisState(epochs)
}
// Validate performs basic genesis state validation returning an error upon any
// failure.
func (gs GenesisState) Validate() error {
epochIdentifiers := map[string]bool{}
for _, epoch := range gs.Epochs {
if epoch.Identifier == "" {
return errors.New("epoch identifier should NOT be empty")
}
if epochIdentifiers[epoch.Identifier] {
return errors.New("epoch identifier should be unique")
}
if epoch.Duration == 0 {
return errors.New("epoch duration should NOT be 0")
}
// enforce EpochCountingStarted is false for all epochs
if epoch.EpochCountingStarted {
return errors.New("epoch counting should NOT be started at genesis")
}
epochIdentifiers[epoch.Identifier] = true
}
return nil
}