track changes to peer records in -core

This commit is contained in:
Yusef Napora 2020-01-22 10:23:47 -05:00 committed by vyzo
parent 5c48ff9a4e
commit 4c804a954a

View File

@ -3,6 +3,7 @@ package pubsub
import ( import (
"context" "context"
"fmt" "fmt"
"github.com/libp2p/go-libp2p-core/record"
"math/rand" "math/rand"
"time" "time"
@ -311,16 +312,16 @@ func (gs *GossipSubRouter) pxConnect(peers []*pb.PeerInfo) {
// the peer sent us a signed record; ensure that it is valid // the peer sent us a signed record; ensure that it is valid
envelope, r, err := record.ConsumeEnvelope(pi.SignedPeerRecord, peer.PeerRecordEnvelopeDomain) envelope, r, err := record.ConsumeEnvelope(pi.SignedPeerRecord, peer.PeerRecordEnvelopeDomain)
if err != nil { if err != nil {
log.Warnf("error unmarshalling peer record obtained through px: %s", err) log.Warningf("error unmarshalling peer record obtained through px: %s", err)
continue continue
} }
rec, ok := r.(*peer.PeerRecord) rec, ok := r.(*peer.PeerRecord)
if !ok { if !ok {
log.Warnf("bogus peer record obtained through px: envelope payload is not PeerRecord") log.Warningf("bogus peer record obtained through px: envelope payload is not PeerRecord")
continue continue
} }
if rec.PeerID != p { if rec.PeerID != p {
log.Warnf("bogus peer record obtained through px: peer ID %s doesn't match expected peer %s", rec.PeerID, p) log.Warningf("bogus peer record obtained through px: peer ID %s doesn't match expected peer %s", rec.PeerID, p)
continue continue
} }
spr = envelope spr = envelope