mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-04-06 02:58:03 +02:00
server: cleanup persistentPeerAddr when pruned
Delete all the stored addresses from the persistentPeerAddr map when we prune the persistent peer.
This commit is contained in:
parent
a6f22c6185
commit
789f00746b
@ -2858,6 +2858,7 @@ func (s *server) prunePersistentPeerConnection(compressedPubKey [33]byte) {
|
||||
if perm, ok := s.persistentPeers[pubKeyStr]; ok && !perm {
|
||||
delete(s.persistentPeers, pubKeyStr)
|
||||
delete(s.persistentPeersBackoff, pubKeyStr)
|
||||
delete(s.persistentPeerAddrs, pubKeyStr)
|
||||
s.cancelConnReqs(pubKeyStr, nil)
|
||||
s.mu.Unlock()
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user