From b18952ff646e1365e40ebca45d73d6a3a4945f1d Mon Sep 17 00:00:00 2001 From: Marko Boben Date: Tue, 9 Jul 2024 14:22:09 +0200 Subject: [PATCH] Changed coston max validator stake --- 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 8738015..d8eba2a 100644 --- a/avalanchego/vms/platformvm/txs/executor/inflation_settings.go +++ b/avalanchego/vms/platformvm/txs/executor/inflation_settings.go @@ -180,7 +180,7 @@ func getCostonInflationSettings(currentTimestamp time.Time, config *config.Confi default: return InflationSettings{ MinValidatorStake: 100 * units.KiloAvax, - MaxValidatorStake: 500 * units.MegaAvax, + MaxValidatorStake: 1000 * units.MegaAvax, MinDelegatorStake: 10 * units.KiloAvax, MinDelegationFee: 0, MinStakeDuration: 24 * time.Hour,