From 9d7c8a38c6e60069f7bcf7e64363be508644bbe8 Mon Sep 17 00:00:00 2001 From: Jasmina Malicevic Date: Sun, 12 Jan 2025 15:08:50 +0100 Subject: [PATCH] Fix TestProtoUpgrade --- types/params_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/params_test.go b/types/params_test.go index 9b032a392f..c7fa868225 100644 --- a/types/params_test.go +++ b/types/params_test.go @@ -680,7 +680,7 @@ func TestProtoUpgrade(t *testing.T) { // Downgrade if pbParams.GetFeature().GetVoteExtensionsEnableHeight().GetValue() > 0 { pbParams.Abci = &cmtproto.ABCIParams{VoteExtensionsEnableHeight: pbParams.GetFeature().GetVoteExtensionsEnableHeight().GetValue()} //nolint: staticcheck - // pbParams.Feature.VoteExtensionsEnableHeight = nil + pbParams.Feature.VoteExtensionsEnableHeight = nil } oriParams := ConsensusParamsFromProto(pbParams)