diff --git a/internal/circulating_supply_test.go b/internal/circulating_supply_test.go index bfbc3f5..8e2045e 100644 --- a/internal/circulating_supply_test.go +++ b/internal/circulating_supply_test.go @@ -13,7 +13,7 @@ func TestCirculatingSupply(t *testing.T) { want int64 } testCases := []testCase{ - {beforeTGE, 0}, + {oneHourBeforeTGE, 0}, {TGE, 141_043_527_750_000}, {oneYearAfterTGE, 399_419_057_601_768}, {twoYearsAfterTGE, 839_606_500_049_419}, @@ -34,7 +34,7 @@ func Test_publicAllocationCirculating(t *testing.T) { want int64 } testCases := []testCase{ - {beforeTGE, 0}, + {oneHourBeforeTGE, 0}, {TGE, publicAllocationGenesis}, {oneYearAfterTGE, publicAllocationGenesis}, } @@ -52,7 +52,7 @@ func Test_investorsCirculating(t *testing.T) { want int64 } testCases := []testCase{ - {beforeTGE, 0}, + {oneHourBeforeTGE, 0}, {TGE, 0}, {oneDayAfterTGE, 0}, {oneYearAfterTGE, 119_212_799_030_136}, @@ -74,7 +74,7 @@ func Test_coreContributorsCirculating(t *testing.T) { want int64 } testCases := []testCase{ - {beforeTGE, 0}, + {oneHourBeforeTGE, 0}, {TGE, 0}, {oneDayAfterTGE, 0}, {oneYearAfterTGE, 58_949_689_726_027}, @@ -96,7 +96,7 @@ func Test_ecosystemCirculating(t *testing.T) { want int64 } testCases := []testCase{ - {beforeTGE, 0}, + {oneHourBeforeTGE, 0}, {TGE, .25 * ecosystem}, {oneDayAfterTGE, .25 * ecosystem}, {oneYearAfterTGE, .25 * ecosystem}, diff --git a/internal/dates.go b/internal/dates.go index 8054eb4..db45fc2 100644 --- a/internal/dates.go +++ b/internal/dates.go @@ -3,7 +3,7 @@ package internal import "time" var ( - beforeTGE = time.Date(2023, time.October, 31, 13, 0, 0, 0, time.UTC) + oneHourBeforeTGE = time.Date(2023, time.October, 31, 13, 0, 0, 0, time.UTC) TGE = time.Date(2023, time.October, 31, 14, 0, 0, 0, time.UTC) oneDayAfterTGE = TGE.AddDate(0, 0, 1) oneYearAfterTGE = TGE.AddDate(1, 0, 0) diff --git a/internal/total_supply_test.go b/internal/total_supply_test.go index 0a6e9f9..f8d3095 100644 --- a/internal/total_supply_test.go +++ b/internal/total_supply_test.go @@ -13,7 +13,7 @@ func TestTotalSupply(t *testing.T) { want int64 } testCases := []testCase{ - {beforeTGE, 0}, + {oneHourBeforeTGE, 0}, {TGE, initialTotalSupplyInUtia}, {oneDayAfterTGE, 1000219178082191}, {oneYearAfterTGE, 1080213041095605},