diff --git a/config/config_test.go b/config/config_test.go index 7ec50290b..0f6476aa5 100644 --- a/config/config_test.go +++ b/config/config_test.go @@ -164,7 +164,6 @@ func TestConsensusConfig_ValidateBasic(t *testing.T) { "PeerGossipSleepDuration negative": {func(c *ConsensusConfig) { c.PeerGossipSleepDuration = -1 }, true}, "PeerQueryMaj23SleepDuration": {func(c *ConsensusConfig) { c.PeerQueryMaj23SleepDuration = time.Second }, false}, "PeerQueryMaj23SleepDuration negative": {func(c *ConsensusConfig) { c.PeerQueryMaj23SleepDuration = -1 }, true}, - "DoubleSignCheckHeight negative": {func(c *ConsensusConfig) { c.DoubleSignCheckHeight = 0 }, true}, } for desc, tc := range testcases { tc := tc // appease linter