From ba3d959331260c18d14d44b9a91479f679ace3b2 Mon Sep 17 00:00:00 2001 From: bogdan-rosianu <51945539+bogdan-rosianu@users.noreply.github.com> Date: Tue, 12 Nov 2024 15:16:16 +0200 Subject: [PATCH] Update overridable-config.toml --- e2e-tests/chain-simulator-e2e/overridable-config.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/e2e-tests/chain-simulator-e2e/overridable-config.toml b/e2e-tests/chain-simulator-e2e/overridable-config.toml index e9aa2d6..6d1390c 100644 --- a/e2e-tests/chain-simulator-e2e/overridable-config.toml +++ b/e2e-tests/chain-simulator-e2e/overridable-config.toml @@ -1,8 +1,8 @@ OverridableConfigTomlValues = [ - { File = "external.toml", Path = "ElasticSearchConnector.Enabled", Value = "true" }, + { File = "external.toml", Path = "ElasticSearchConnector.Enabled", Value = true }, { File = "external.toml", Path = "ElasticSearchConnector.URL", Value = "http://elasticsearch:9200" }, - { File = "enableEpochs.toml", Path = "EnableEpochs.StakeLimitsEnableEpoch", Value = "1000000" }, + { File = "enableEpochs.toml", Path = "EnableEpochs.StakeLimitsEnableEpoch", Value = 1000000 }, { File = "systemSmartContractsConfig.toml", Path = "ESDTSystemSCConfig.BaseIssuingCost", Value = "50000000000000000" }, # (0.05 EGLD) - { File = "config.toml", Path = "Debug.Process.Enabled", Value = "false" }, - { File = "config.toml", Path = "WebServerAntiflood.WebServerAntifloodEnabled", Value = "false"} + { File = "config.toml", Path = "Debug.Process.Enabled", Value = false }, + { File = "config.toml", Path = "WebServerAntiflood.WebServerAntifloodEnabled", Value = false } ]