Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
burrow
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hang Yu
burrow
Commits
2a7f09dd
Commit
2a7f09dd
authored
9 years ago
by
Jae Kwon
Committed by
Ethan Buchman
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Patch in fix of height-vote-set
parent
4333cf69
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Godeps/_workspace/src/github.com/tendermint/tendermint/consensus/height_vote_set.go
+2
-1
2 additions, 1 deletion
...ub.com/tendermint/tendermint/consensus/height_vote_set.go
with
2 additions
and
1 deletion
Godeps/_workspace/src/github.com/tendermint/tendermint/consensus/height_vote_set.go
+
2
−
1
View file @
2a7f09dd
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment