-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #75 from multiversx/disable-web-antiflood
Disabled the web antiflood
- Loading branch information
Showing
1 changed file
with
6 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
# System overrides, DO NOT EDIT THIS FILE | ||
OverridableConfigTomlValues = [ | ||
# the following line will disable stake limits (so the stake operations will accept as many nodes as desired) | ||
{ File = "enableEpochs.toml", Path = "EnableEpochs.StakeLimitsEnableEpoch", Value = "1000000" }, # disable stake limits | ||
{ File = "systemSmartContractsConfig.toml", Path = "ESDTSystemSCConfig.BaseIssuingCost", Value = "50000000000000000" }, # (0.05 EGLD) | ||
{ File = "config.toml", Path = "Debug.Process.Enabled", Value = "false" } | ||
{ File = "config.toml", Path = "Debug.Process.Enabled", Value = "false" }, # disable process debugger component that might alter the log levels | ||
# the folowing 3 lines will disable the web antiflooding (useful to send a large transaction batch to the chain simulator) | ||
{ File = "config.toml", Path = "WebServerAntiflood.WebServerAntifloodEnabled", Value = "false"}, | ||
{ File = "config.toml", Path = "WebServerAntiflood.SimultaneousRequests", Value = "100000"}, | ||
{ File = "config.toml", Path = "WebServerAntiflood.SameSourceRequests", Value = "1000000"} | ||
] |