From 68dfb4ff90048f2a050bd7433545c90f610cdd78 Mon Sep 17 00:00:00 2001 From: William Banfield Date: Tue, 30 Nov 2021 09:47:21 -0500 Subject: [PATCH] types: remove accuracy from timestamp params --- types/params.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/types/params.go b/types/params.go index 8c0217a44..2a39e9747 100644 --- a/types/params.go +++ b/types/params.go @@ -80,7 +80,6 @@ type VersionParams struct { // TODO (@wbanfield): add link to proposer-based timestamp spec when completed. type TimestampParams struct { Precision time.Duration `json:"precision"` - Accuracy time.Duration `json:"accuracy"` MsgDelay time.Duration `json:"msg_delay"` } @@ -130,7 +129,6 @@ func DefaultTimestampParams() TimestampParams { // https://github.com/tendermint/tendermint/issues/7202 return TimestampParams{ Precision: 2 * time.Second, - Accuracy: 500 * time.Millisecond, MsgDelay: 3 * time.Second, } }