Merge #9604: [Trivial] add comment about setting peer as HB peer.
dd5b011
[Trivial] add comment about setting peer as HB peer. (John Newbery)
This commit is contained in:
commit
729de15b63
1 changed files with 9 additions and 1 deletions
|
@ -863,7 +863,15 @@ void PeerLogicValidation::BlockChecked(const CBlock& block, const CValidationSta
|
||||||
Misbehaving(it->second.first, nDoS);
|
Misbehaving(it->second.first, nDoS);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (state.IsValid() && !IsInitialBlockDownload() && mapBlocksInFlight.count(hash) == mapBlocksInFlight.size()) {
|
// Check that:
|
||||||
|
// 1. The block is valid
|
||||||
|
// 2. We're not in initial block download
|
||||||
|
// 3. This is currently the best block we're aware of. We haven't updated
|
||||||
|
// the tip yet so we have no way to check this directly here. Instead we
|
||||||
|
// just check that there are currently no other blocks in flight.
|
||||||
|
else if (state.IsValid() &&
|
||||||
|
!IsInitialBlockDownload() &&
|
||||||
|
mapBlocksInFlight.count(hash) == mapBlocksInFlight.size()) {
|
||||||
if (it != mapBlockSource.end()) {
|
if (it != mapBlockSource.end()) {
|
||||||
MaybeSetPeerAsAnnouncingHeaderAndIDs(it->second.first, *connman);
|
MaybeSetPeerAsAnnouncingHeaderAndIDs(it->second.first, *connman);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue