parent
fefec000fb
commit
94cb3b6e0e
@ -533,6 +533,9 @@ impl LightProtocol {
|
|||||||
// the timer approach will skip 1 (possibly 2) in rare occasions.
|
// the timer approach will skip 1 (possibly 2) in rare occasions.
|
||||||
if peer_info.sent_head == announcement.head_hash ||
|
if peer_info.sent_head == announcement.head_hash ||
|
||||||
peer_info.status.head_num >= announcement.head_num ||
|
peer_info.status.head_num >= announcement.head_num ||
|
||||||
|
// fix for underflow reported in
|
||||||
|
// https://github.com/paritytech/parity-ethereum/issues/10419
|
||||||
|
now < peer_info.last_update ||
|
||||||
now - peer_info.last_update < UPDATE_INTERVAL {
|
now - peer_info.last_update < UPDATE_INTERVAL {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user