mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-06-20 22:04:31 +02:00
server: use deduped addrMap for connReq creation
Use the addrMap for connReq creation to prevent creating duplicate connection requests if persistentPeerAddrs contains duplicate addresses.
This commit is contained in:
parent
dd3719d5de
commit
84f6b70773
@ -460,6 +460,9 @@ you.
|
|||||||
certain channels couldn't be passed to `lncli getchaninfo` due to their 8-byte
|
certain channels couldn't be passed to `lncli getchaninfo` due to their 8-byte
|
||||||
compact ID being too large for an int64.
|
compact ID being too large for an int64.
|
||||||
|
|
||||||
|
* [Dedup stored peer addresses before creating connection requests to prevent
|
||||||
|
redundant connection requests](https://github.com/lightningnetwork/lnd/pull/5839)
|
||||||
|
|
||||||
## Documentation
|
## Documentation
|
||||||
|
|
||||||
The [code contribution guidelines have been updated to mention the new
|
The [code contribution guidelines have been updated to mention the new
|
||||||
|
@ -3772,11 +3772,7 @@ func (s *server) connectToPersistentPeer(pubKeyStr string) {
|
|||||||
|
|
||||||
// Any addresses left in addrMap are new ones that we have not made
|
// Any addresses left in addrMap are new ones that we have not made
|
||||||
// connection requests for. So create new connection requests for those.
|
// connection requests for. So create new connection requests for those.
|
||||||
for _, addr := range s.persistentPeerAddrs[pubKeyStr] {
|
for _, addr := range addrMap {
|
||||||
if _, ok := addrMap[addr.String()]; !ok {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
connReq := &connmgr.ConnReq{
|
connReq := &connmgr.ConnReq{
|
||||||
Addr: addr,
|
Addr: addr,
|
||||||
Permanent: true,
|
Permanent: true,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user