Skip to content

Commit

Permalink
use utc for genesis (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
beer-1 authored Jul 29, 2024
1 parent 58dd526 commit b22c4d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x/reward/types/genesis.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ func NewGenesisState(params Params, lastReleaseTimestamp time.Time, lastDilution
func DefaultGenesisState() *GenesisState {
return &GenesisState{
Params: DefaultParams(),
LastReleaseTimestamp: time.Now(),
LastDilutionTimestamp: time.Now(),
LastReleaseTimestamp: time.Now().UTC(),
LastDilutionTimestamp: time.Now().UTC(),
}
}

Expand Down

0 comments on commit b22c4d8

Please sign in to comment.