Skip to content

Commit

Permalink
Re-fixed lint
Browse files Browse the repository at this point in the history
  • Loading branch information
sergio-mena committed May 10, 2024
1 parent b850d71 commit 40b2dff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions x/consensus/keeper/keeper_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ func (s *KeeperTestSuite) TestGRPCQueryConsensusParams() {
Validator: modifiedConsensusParams.Validator,
Evidence: modifiedConsensusParams.Evidence,
Synchrony: modifiedConsensusParams.Synchrony,
Abci: &cmtproto.ABCIParams{ //nolint: staticcheck
Abci: &cmtproto.ABCIParams{ //nolint: staticcheck // testing backwards compatibility
VoteExtensionsEnableHeight: 1234,
},
}
Expand Down Expand Up @@ -313,7 +313,7 @@ func (s *KeeperTestSuite) TestUpdateParams() {
Block: defaultConsensusParams.Block,
Validator: defaultConsensusParams.Validator,
Evidence: defaultConsensusParams.Evidence,
Abci: &cmtproto.ABCIParams{ //nolint: staticcheck
Abci: &cmtproto.ABCIParams{ //nolint: staticcheck // testing backwards compatibility
VoteExtensionsEnableHeight: 90,
},
},
Expand All @@ -327,7 +327,7 @@ func (s *KeeperTestSuite) TestUpdateParams() {
Block: defaultConsensusParams.Block,
Validator: defaultConsensusParams.Validator,
Evidence: defaultConsensusParams.Evidence,
Abci: &cmtproto.ABCIParams{ //nolint: staticcheck
Abci: &cmtproto.ABCIParams{ //nolint: staticcheck // testing backwards compatibility
VoteExtensionsEnableHeight: 3000,
},
Feature: &cmtproto.FeatureParams{
Expand Down

0 comments on commit 40b2dff

Please sign in to comment.