From 591cc8766918b4532ea5bd533c96aba5f93bb867 Mon Sep 17 00:00:00 2001 From: William Banfield <4561443+williambanfield@users.noreply.github.com> Date: Tue, 30 Nov 2021 11:52:51 -0500 Subject: [PATCH] types: remove accuracy from timestamp params (#7341) --- 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, } }