diff --git a/x/epochs/types/genesis.go b/x/epochs/types/genesis.go index d7b8e938..ce006227 100644 --- a/x/epochs/types/genesis.go +++ b/x/epochs/types/genesis.go @@ -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{}, @@ -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{}, @@ -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{}, @@ -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{},