fix: set outgoingPeerBlocklist and incomingPeerBlockList correctly
This commit is contained in:
parent
b9bf531663
commit
3f0af1587b
|
@ -225,7 +225,8 @@ func (p *P2PImpl) ConnectToNode(connectionUris []*url.URL, retried bool, fromPee
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
p.incomingPeerBlockList.Put(idString, fromPeerId)
|
p.outgoingPeerBlocklist.Put(fromPeerId, true)
|
||||||
|
p.incomingPeerBlockList.Put(idString, true)
|
||||||
err = fromPeer.End()
|
err = fromPeer.End()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
|
|
Loading…
Reference in New Issue