From 5c171eeaf61469c77bf0e3203c18ec9cac7927ca Mon Sep 17 00:00:00 2001 From: Iulian Pascalau Date: Wed, 15 May 2024 19:23:59 +0300 Subject: [PATCH] - properly disable stake limits --- cmd/chainsimulator/config/nodeOverrideDefault.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/chainsimulator/config/nodeOverrideDefault.toml b/cmd/chainsimulator/config/nodeOverrideDefault.toml index 97ff9c08..be6da512 100644 --- a/cmd/chainsimulator/config/nodeOverrideDefault.toml +++ b/cmd/chainsimulator/config/nodeOverrideDefault.toml @@ -1,6 +1,6 @@ # System overrides, DO NOT EDIT THIS FILE OverridableConfigTomlValues = [ - { File = "systemSmartContractsConfig.toml", Path = "StakingSystemSCConfig.NodeLimitPercentage", Value = "1.0" }, # no staking limits imposed + { File = "enableEpochs.toml", Path = "EnableEpochs.StakeLimitsEnableEpoch", Value = "1000000" }, # disable stake limits # TODO remove the following overrides when integrating a newer version of the node (greater than v1.7.10) { File = "systemSmartContractsConfig.toml", Path = "DelegationManagerSystemSCConfig.MinStakeAmount", Value = "1000000000000000000" }, # 1 EGLD as on mainnet ]