mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 09:53:54 +01:00
discovery: check nil policy within isMsgStale
If both policies don't exist, then this would result in a panic. Since they don't exist, we can assume the policy we're currently evaluating is fresh.
This commit is contained in:
parent
c1f7732a31
commit
90475d5339
@ -2361,6 +2361,12 @@ func (d *AuthenticatedGossiper) isMsgStale(msg lnwire.Message) bool {
|
||||
p = p2
|
||||
}
|
||||
|
||||
// If the policy is still unknown, then we can consider this
|
||||
// policy fresh.
|
||||
if p == nil {
|
||||
return false
|
||||
}
|
||||
|
||||
timestamp := time.Unix(int64(msg.Timestamp), 0)
|
||||
return p.LastUpdate.After(timestamp)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user