From 62ecdf5b60a4ed4754fe5628bc4ba6f1ae2bc56a Mon Sep 17 00:00:00 2001 From: William Banfield Date: Mon, 16 May 2022 11:40:08 -0400 Subject: [PATCH] correct NewStrictVoteSet constructor to not call itself --- types/vote_set.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/vote_set.go b/types/vote_set.go index d919360c5..e8615db8c 100644 --- a/types/vote_set.go +++ b/types/vote_set.go @@ -98,7 +98,7 @@ func NewVoteSet(chainID string, height int64, round int32, // data for every vote added to the set. func NewStrictVoteSet(chainID string, height int64, round int32, signedMsgType tmproto.SignedMsgType, valSet *ValidatorSet) *VoteSet { - vs := NewStrictVoteSet(chainID, height, round, signedMsgType, valSet) + vs := NewVoteSet(chainID, height, round, signedMsgType, valSet) vs.requireExtensions = true return vs }