From 973003bda44cc1802f7d9552dad27f17bcbee97a Mon Sep 17 00:00:00 2001 From: William Banfield Date: Wed, 23 Mar 2022 19:11:51 -0400 Subject: [PATCH] add values back to config toml tmpl --- config/toml.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/config/toml.go b/config/toml.go index a0a4b2a2c..7ed1aaabf 100644 --- a/config/toml.go +++ b/config/toml.go @@ -477,29 +477,29 @@ peer-query-maj23-sleep-duration = "{{ .Consensus.PeerQueryMaj23SleepDuration }}" # This field provides an unsafe override of the Propose timeout consensus parameter. # This field configures how long the consensus engine will wait for a proposal block before prevoting nil. # If this field is set to a value greater than 0, it will take effect. -# unsafe-propose-timeout-override = +# unsafe-propose-timeout-override = {{ .Consensus.UnsafeProposeTimeoutOverride }} # This field provides an unsafe override of the ProposeDelta timeout consensus parameter. # This field configures how much the propose timeout increases with each round. # If this field is set to a value greater than 0, it will take effect. -# unsafe-propose-timeout-delta-override = +# unsafe-propose-timeout-delta-override = {{ .Consensus.UnsafeProposeTimeoutDeltaOverride }} # This field provides an unsafe override of the Vote timeout consensus parameter. # This field configures how long the consensus engine will wait after # receiving +2/3 votes in a around. # If this field is set to a value greater than 0, it will take effect. -# unsafe-vote-timeout-override = +# unsafe-vote-timeout-override = {{ .Consensus.UnsafeVoteTimeoutOverride }} # This field provides an unsafe override of the VoteDelta timeout consensus parameter. # This field configures how much the vote timeout increases with each round. # If this field is set to a value greater than 0, it will take effect. -# unsafe-vote-timeout-delta-override = +# unsafe-vote-timeout-delta-override = {{ .Consensus.UnsafeVoteTimeoutDeltaOverride }} # This field provides an unsafe override of the Commit timeout consensus parameter. # This field configures how long the consensus engine will wait after receiving # +2/3 precommits before beginning the next height. # If this field is set to a value greater than 0, it will take effect. -# unsafe-commit-timeout-override = +# unsafe-commit-timeout-override = {{ .Consensus.UnsafeCommitTimeoutOverride }} # This field provides an unsafe override of the BypassCommitTimeout consensus parameter. # This field configures if the consensus engine will wait for the full Commit timeout