From cd027e88abbb6b19296314b6710de7520a671df8 Mon Sep 17 00:00:00 2001 From: William Banfield Date: Wed, 30 Mar 2022 14:53:44 -0400 Subject: [PATCH] lint warning --- config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.go b/config/config.go index 2b7f715ba..c18ac9ede 100644 --- a/config/config.go +++ b/config/config.go @@ -1121,7 +1121,7 @@ func (cfg *ConsensusConfig) DeprecatedFieldWarning() error { fields = append(fields, "skip-timeout-commit") } if len(fields) != 0 { - return fmt.Errorf("The following deprecated fields were set in the "+ + return fmt.Errorf("the following deprecated fields were set in the "+ "configuration file: %s. These fields were removed in v0.36. Timeout "+ "configuration has been moved to the ConsensusParams. For more information see "+ "https://tinyurl.com/adr074", strings.Join(fields, ", "))