1
0

Merge pull request #9772 from f321x/fix_suggest_peer

fix: don't suggest onion peers for channel opening
This commit is contained in:
accumulator
2025-05-01 10:53:13 +02:00
committed by GitHub
2 changed files with 7 additions and 0 deletions

View File

@@ -217,6 +217,7 @@ class NodeInfo(NamedTuple):
return b'\x01' + ip_addr.packed + port_bytes
elif ip_addr.version == 6:
return b'\x02' + ip_addr.packed + port_bytes
return b''
elif hostname.endswith('.onion'): # Tor onion v3
onion_addr: bytes = base64.b32decode(hostname[:-6], casefold=True)
return b'\x04' + onion_addr + port_bytes

View File

@@ -258,6 +258,12 @@ class LNRater(Logger):
# don't want to connect to nodes we already have a channel with on another device
if self.lnworker.has_conflicting_backup_with(pk):
continue
# node should be on clearnet and have an address saved
for (hostname, _, _) in self.lnworker.channel_db.get_node_addresses(node_id=pk):
if not hostname.endswith(".onion"):
break
else:
continue
break
alias = node_info.alias if node_info else 'unknown node alias'