Merge pull request #2960 from wpaulino/reliable-send-panic

discovery: check nil policy within isMsgStale
This commit is contained in:
Johan T. Halseth 2019-04-16 09:11:10 +02:00 committed by GitHub
commit 74a4286bba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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)