Skip to content

Commit 18f36ed

Browse files
authored
Merge pull request #13 from gitopia/release-v3.0.1
fix non-determinism in time
2 parents 37baac1 + 90e0361 commit 18f36ed

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

x/rewards/migrations/v2/migrate.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ import (
1818
)
1919

2020
var (
21-
AIRDROP_START_TIME = time.Date(2023, 9, 16, 0, 0, 0, 0, time.Now().Local().Location())
22-
AIRDROP_END_TIME = time.Date(2023, 11, 16, 0, 0, 0, 0, time.Now().Local().Location())
21+
AIRDROP_START_TIME = time.Date(2023, 9, 16, 0, 0, 0, 0, time.UTC)
22+
AIRDROP_END_TIME = time.Date(2023, 11, 16, 0, 0, 0, 0, time.UTC)
2323
)
2424

2525
type Migrator struct {

0 commit comments

Comments
 (0)