From e871ad797a85d61866b9e7e1141652566f4f63e9 Mon Sep 17 00:00:00 2001 From: William Banfield Date: Thu, 2 Dec 2021 14:58:56 -0500 Subject: [PATCH] set params to 1 for the time being --- types/params.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/params.go b/types/params.go index 72f4ef267..255181415 100644 --- a/types/params.go +++ b/types/params.go @@ -129,8 +129,8 @@ func DefaultTimingParams() TimingParams { // TODO(@wbanfield): Determine experimental values for these defaults // https://github.com/tendermint/tendermint/issues/7202 return TimingParams{ - Precision: 50 * time.Millisecond, - MessageDelay: 3 * time.Second, + Precision: 1 * time.Nanosecond, + MessageDelay: 1 * time.Nanosecond, } }