use NodeInfo as an interface

This commit is contained in:
Mehmet Gurevin
2018-10-18 19:22:09 +03:00
parent 7f41070da0
commit 5f7d055e6c

View File

@@ -394,7 +394,7 @@ func (r *PEXReactor) ensurePeers() {
if r.Switch.IsDialingOrExistingAddress(try) {
continue
}
if r.Switch.NodeInfo().ID == try.ID {
if r.Switch.NodeInfo().ID() == try.ID {
continue // we don't want to dial ourselves, usually.
}
// TODO: consider moving some checks from toDial into here