From 16ea0e5a98930e49191d5f5c94eefc057856c3f4 Mon Sep 17 00:00:00 2001 From: Marko Boben Date: Tue, 9 Jul 2024 11:20:45 +0200 Subject: [PATCH] Updated staking start time for coston --- avalanchego/vms/platformvm/txs/executor/inflation_settings.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/avalanchego/vms/platformvm/txs/executor/inflation_settings.go b/avalanchego/vms/platformvm/txs/executor/inflation_settings.go index 8f98ed2f..87380152 100644 --- a/avalanchego/vms/platformvm/txs/executor/inflation_settings.go +++ b/avalanchego/vms/platformvm/txs/executor/inflation_settings.go @@ -188,7 +188,7 @@ func getCostonInflationSettings(currentTimestamp time.Time, config *config.Confi MaxStakeDuration: 365 * 24 * time.Hour, MinFutureStartTimeOffset: MaxFutureStartTime, MaxValidatorWeightFactor: 15, - MinStakeStartTime: time.Date(2024, time.July, 30, 0, 0, 0, 0, time.UTC), + MinStakeStartTime: time.Date(2024, time.July, 30, 12, 0, 0, 0, time.UTC), } } }