Skip to content

Commit

Permalink
fix: revert old epoch durations
Browse files Browse the repository at this point in the history
  • Loading branch information
hallazzang committed Jun 27, 2024
1 parent a9e738f commit aca02b9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions x/epochs/types/genesis.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func DefaultGenesis() *GenesisState {
{
Identifier: DAY_EPOCH,
StartTime: time.Time{},
Duration: 120 * time.Second,
Duration: time.Hour * 24,
CurrentEpoch: 0,
CurrentEpochStartHeight: 0,
CurrentEpochStartTime: time.Time{},
Expand All @@ -44,7 +44,7 @@ func DefaultGenesis() *GenesisState {
{
Identifier: STRIDE_EPOCH,
StartTime: time.Time{},
Duration: 30 * time.Second,
Duration: time.Hour * 6,
CurrentEpoch: 0,
CurrentEpochStartHeight: 0,
CurrentEpochStartTime: time.Time{},
Expand All @@ -53,7 +53,7 @@ func DefaultGenesis() *GenesisState {
{
Identifier: MINT_EPOCH,
StartTime: time.Time{},
Duration: 120 * time.Second,
Duration: time.Minute * 60,
CurrentEpoch: 0,
CurrentEpochStartHeight: 0,
CurrentEpochStartTime: time.Time{},
Expand All @@ -62,7 +62,7 @@ func DefaultGenesis() *GenesisState {
{
Identifier: HOUR_EPOCH,
StartTime: time.Time{},
Duration: 30 * time.Second,
Duration: time.Hour,
CurrentEpoch: 0,
CurrentEpochStartHeight: 0,
CurrentEpochStartTime: time.Time{},
Expand Down

0 comments on commit aca02b9

Please sign in to comment.