-
Let's say I have set up SOCKSPORT as follows:
Does |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I looked at the code of what lnd does with the |
Beta Was this translation helpful? Give feedback.
I looked at the code of what lnd does with the
tor.streamisolation
flag and it looks like it creates a new set of credentials for each individual connection which in turn causes Tor to create a new circuit every time an address is dialed.So this seems to create an additional layer of isolation. But looking at what
IsolateDestAddr
does and how "expensive" a new circuit is, it might be a good middle ground to useIsolateDestAddr
instead oflnd
's stream isolation. That way you could re-use an existing circuit to re-connect to a node (if it just restarts) instead of forcing a new circuit on every connection attempt.That could lead to somewhat more stable connections, but I'm just speculatin…