Skip to content
Snippets Groups Projects
Commit 2a7f09dd authored by Jae Kwon's avatar Jae Kwon Committed by Ethan Buchman
Browse files

Patch in fix of height-vote-set

parent 4333cf69
No related branches found
No related tags found
No related merge requests found
...@@ -95,14 +95,15 @@ func (hvs *HeightVoteSet) AddByIndex(valIndex int, vote *types.Vote, peerKey str ...@@ -95,14 +95,15 @@ func (hvs *HeightVoteSet) AddByIndex(valIndex int, vote *types.Vote, peerKey str
if voteSet == nil { if voteSet == nil {
if _, ok := hvs.peerCatchupRounds[peerKey]; !ok { if _, ok := hvs.peerCatchupRounds[peerKey]; !ok {
hvs.addRound(vote.Round) hvs.addRound(vote.Round)
voteSet = hvs.getVoteSet(vote.Round, vote.Type)
hvs.peerCatchupRounds[peerKey] = vote.Round hvs.peerCatchupRounds[peerKey] = vote.Round
} else { } else {
// Peer has sent a vote that does not match our round, // Peer has sent a vote that does not match our round,
// for more than one round. Bad peer! // for more than one round. Bad peer!
// TODO punish peer. // TODO punish peer.
log.Warn("Deal with peer giving votes from unwanted rounds") log.Warn("Deal with peer giving votes from unwanted rounds")
return
} }
return
} }
added, address, err = voteSet.AddByIndex(valIndex, vote) added, address, err = voteSet.AddByIndex(valIndex, vote)
return return
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment