Skip to content

Commit

Permalink
Merge pull request #4426 from sacherjj/1.5.4-final-configs
Browse files Browse the repository at this point in the history
Update config-example.toml and chainspec.toml for 16s blocks.
  • Loading branch information
sacherjj authored Nov 21, 2023
2 parents 19aeefa + e60163b commit e688fbc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions resources/production/chainspec.toml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ administrators = []

[highway]
# Highway dynamically chooses its round length, between minimum_block_time and maximum_round_length.
maximum_round_length = '132 seconds'
maximum_round_length = '66 seconds'
# The factor by which rewards for a round are multiplied if the greatest summit has ≤50% quorum, i.e. no finality.
# Expressed as a fraction (1/5 by default).
reduced_reward_multiplier = [1, 5]
Expand All @@ -125,13 +125,13 @@ max_ttl = '18 hours'
# The maximum number of other deploys a deploy can depend on (require to have been executed before it can execute).
max_dependencies = 10
# Maximum block size in bytes including deploys contained by the block. 0 means unlimited.
max_block_size = 10_485_760
max_block_size = 5_242_880
# Maximum deploy size in bytes. Size is of the deploy when serialized via ToBytes.
max_deploy_size = 1_048_576
# The maximum number of non-transfer deploys permitted in a single block.
block_max_deploy_count = 50
block_max_deploy_count = 25
# The maximum number of wasm-less transfer deploys permitted in a single block.
block_max_transfer_count = 1250
block_max_transfer_count = 650
# The maximum number of approvals permitted in a single block.
block_max_approval_count = 2600
# The upper limit of total gas of all deploys in a block.
Expand Down
2 changes: 1 addition & 1 deletion resources/production/config-example.toml
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ address = '0.0.0.0:7777'

# The global max rate of requests (per second) before they are limited.
# Request will be delayed to the next 1 second bucket once limited.
qps_limit = 100
qps_limit = 50

# Maximum number of bytes to accept in a single request body.
max_body_bytes = 2_621_440
Expand Down

0 comments on commit e688fbc

Please sign in to comment.