Skip to content

Instantly share code, notes, and snippets.

@webmaster128
Last active February 28, 2023 09:39
Show Gist options
  • Save webmaster128/8c127352e3ea58802cd584f5bb5d9b89 to your computer and use it in GitHub Desktop.
Save webmaster128/8c127352e3ea58802cd584f5bb5d9b89 to your computer and use it in GitHub Desktop.
Nois blocktime settings
# How long we wait for a proposal block before prevoting nil
timeout_propose = "2000ms"
# How much timeout_propose increases with each round
timeout_propose_delta = "500ms"
# How long we wait after receiving +2/3 prevotes for “anything” (ie. not a single block or nil)
timeout_prevote = "1s"
# How much the timeout_prevote increases with each round
timeout_prevote_delta = "500ms"
# How long we wait after receiving +2/3 precommits for “anything” (ie. not a single block or nil)
timeout_precommit = "1s"
# How much the timeout_precommit increases with each round
timeout_precommit_delta = "500ms"
# How long we wait after committing a block, before starting on the new
# height (this gives us a chance to receive some more precommits, even
# though we already have +2/3).
timeout_commit = "1750ms"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment