Browse Source

replace magic number with blocksToContributeToBecomeGoodPeer const

Refs #1317
pull/1333/head
Anton Kaliaev 7 years ago
parent
commit
5fab8e404d
No known key found for this signature in database GPG Key ID: 7B6881D965918214
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      consensus/reactor.go

+ 4
- 2
consensus/reactor.go View File

@ -27,6 +27,8 @@ const (
VoteSetBitsChannel = byte(0x23) VoteSetBitsChannel = byte(0x23)
maxConsensusMessageSize = 1048576 // 1MB; NOTE/TODO: keep in sync with types.PartSet sizes. maxConsensusMessageSize = 1048576 // 1MB; NOTE/TODO: keep in sync with types.PartSet sizes.
blocksToContributeToBecomeGoodPeer = 10000
) )
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
@ -251,7 +253,7 @@ func (conR *ConsensusReactor) Receive(chID byte, src p2p.Peer, msgBytes []byte)
ps.ApplyProposalPOLMessage(msg) ps.ApplyProposalPOLMessage(msg)
case *BlockPartMessage: case *BlockPartMessage:
ps.SetHasProposalBlockPart(msg.Height, msg.Round, msg.Part.Index) ps.SetHasProposalBlockPart(msg.Height, msg.Round, msg.Part.Index)
if numBlocks := ps.RecordBlockPart(msg); numBlocks > 10000 {
if numBlocks := ps.RecordBlockPart(msg); numBlocks > blocksToContributeToBecomeGoodPeer {
conR.Switch.MarkPeerAsGood(src) conR.Switch.MarkPeerAsGood(src)
} }
conR.conS.peerMsgQueue <- msgInfo{msg, src.ID()} conR.conS.peerMsgQueue <- msgInfo{msg, src.ID()}
@ -273,7 +275,7 @@ func (conR *ConsensusReactor) Receive(chID byte, src p2p.Peer, msgBytes []byte)
ps.EnsureVoteBitArrays(height, valSize) ps.EnsureVoteBitArrays(height, valSize)
ps.EnsureVoteBitArrays(height-1, lastCommitSize) ps.EnsureVoteBitArrays(height-1, lastCommitSize)
ps.SetHasVote(msg.Vote) ps.SetHasVote(msg.Vote)
if blocks := ps.RecordVote(msg.Vote); blocks > 10000 {
if blocks := ps.RecordVote(msg.Vote); blocks > blocksToContributeToBecomeGoodPeer {
conR.Switch.MarkPeerAsGood(src) conR.Switch.MarkPeerAsGood(src)
} }


Loading…
Cancel
Save