From 495ac2f6c269aa3b972826cb8689e676ad3a17af Mon Sep 17 00:00:00 2001 From: zakir Date: Fri, 10 Feb 2023 11:03:29 +0800 Subject: [PATCH] fix: double_sign_check_height set to 0 --- public/mainnet/config.toml | 2 +- public/testnet/config.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/mainnet/config.toml b/public/mainnet/config.toml index 29ff7429b..937c13e0a 100644 --- a/public/mainnet/config.toml +++ b/public/mainnet/config.toml @@ -341,7 +341,7 @@ timeout_commit = "5s" # When non-zero, the node will panic upon restart # if the same consensus key was used to sign {double_sign_check_height} last blocks. # So, validators should stop the state machine, wait for some blocks, and then restart the state machine to avoid panic. -double_sign_check_height = 10 +double_sign_check_height = 0 # Make progress as soon as we have all the precommits (as if TimeoutCommit = 0) skip_timeout_commit = false diff --git a/public/testnet/config.toml b/public/testnet/config.toml index 15260bc40..8775d04b8 100644 --- a/public/testnet/config.toml +++ b/public/testnet/config.toml @@ -376,7 +376,7 @@ timeout_commit = "5s" # When non-zero, the node will panic upon restart # if the same consensus key was used to sign {double_sign_check_height} last blocks. # So, validators should stop the state machine, wait for some blocks, and then restart the state machine to avoid panic. -double_sign_check_height = 10 +double_sign_check_height = 0 # Make progress as soon as we have all the precommits (as if TimeoutCommit = 0) skip_timeout_commit = false