From b37c10c32484d1797234e4fee415be6a4b75decd Mon Sep 17 00:00:00 2001 From: William Banfield <4561443+williambanfield@users.noreply.github.com> Date: Wed, 26 Jan 2022 15:29:54 -0500 Subject: [PATCH] params: increase default synchrony params (#7704) --- types/params.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/params.go b/types/params.go index 3540805cc..eaa91195f 100644 --- a/types/params.go +++ b/types/params.go @@ -132,7 +132,7 @@ func DefaultSynchronyParams() SynchronyParams { // https://github.com/tendermint/tendermint/issues/7202 return SynchronyParams{ Precision: 500 * time.Millisecond, - MessageDelay: 2 * time.Second, + MessageDelay: 3 * time.Second, } }