Upgrade
Chain ID | Latest Version Tag | Custom Port |
---|---|---|
initiation-1 | v0.2.15 | 179 |
note
By leveraging Cosmovisor, preparing for forthcoming upgrades becomes a straightforward task. Simply construct the new binaries and transfer them to the designated Cosmovisor upgrades directory to streamline the upgrade process efficiently.
info
05/21/2024 11:56 AMโ
Our metrics indicate that the proposed timeout is too short for the current transaction volume. This brief timeout leads to delays in consensus. Therefore, let's perform some tests with the following setup.โ
# How long we wait for a proposal block before prevoting nil
timeout_propose = "3s"
# 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 = "1s"
Please also ensure your Oracle configuration uses a short client_timeout in ~/.initia/app.toml to prevent missed precommits.โ
# Client Timeout is the time that the client is willing to wait for responses from
# the oracle before timing out.
client_timeout = "300ms"