From d337d1c287328c457c09142d45bbfd922292498b Mon Sep 17 00:00:00 2001 From: William Banfield Date: Wed, 26 Jan 2022 10:26:37 -0500 Subject: [PATCH] increase precision value --- types/params.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/params.go b/types/params.go index 4e1532cf6..f0d8714f8 100644 --- a/types/params.go +++ b/types/params.go @@ -129,7 +129,7 @@ func DefaultSynchronyParams() SynchronyParams { // TODO(@wbanfield): Determine experimental values for these defaults // https://github.com/tendermint/tendermint/issues/7202 return SynchronyParams{ - Precision: 50 * time.Millisecond, + Precision: 500 * time.Millisecond, MessageDelay: 2 * time.Second, } }