diff --git a/consensus/height_vote_set.go b/consensus/height_vote_set.go index 583ef3f6f..5cc181b1b 100644 --- a/consensus/height_vote_set.go +++ b/consensus/height_vote_set.go @@ -167,6 +167,8 @@ func (hvs *HeightVoteSet) String() string { } func (hvs *HeightVoteSet) StringIndented(indent string) string { + hvs.mtx.Lock() + defer hvs.mtx.Unlock() vsStrings := make([]string, 0, (len(hvs.roundVoteSets)+1)*2) // rounds 0 ~ hvs.round inclusive for round := 0; round <= hvs.round; round++ {