You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/release-notes/release-notes-0.20.0.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -252,6 +252,10 @@ reader of a payment request.
252
252
`QueryRoutes` RPC. This [transition](https://github.com/lightningnetwork/lnd/pull/10057) allows us to specify more than one outgoing channel
253
253
the pathfinder should use when finding a route.
254
254
255
+
* Support for Tor v2 onion services is deprecated and will be removed in
256
+
v0.21.0. The `--tor.v2` configuration option is now
Copy file name to clipboardExpand all lines: lncfg/tor.go
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ type Tor struct {
12
12
Controlstring`long:"control" description:"The host:port that Tor is listening on for Tor control connections"`
13
13
TargetIPAddressstring`long:"targetipaddress" description:"IP address that Tor should use as the target of the hidden service"`
14
14
Passwordstring`long:"password" description:"The password used to arrive at the HashedControlPassword for the control port. If provided, the HASHEDPASSWORD authentication method will be used instead of the SAFECOOKIE one."`
15
-
V2bool`long:"v2" description:"Automatically set up a v2 onion service to listen for inbound connections"`
15
+
V2bool`long:"v2" description:"DEPRECATED: Tor v2 onion services are obsolete and support will be removed in v0.21.0. Use v3 instead." hidden:"true"`
16
16
V3bool`long:"v3" description:"Automatically set up a v3 onion service to listen for inbound connections"`
17
17
PrivateKeyPathstring`long:"privatekeypath" description:"The path to the private key of the onion service being created"`
18
18
EncryptKeybool`long:"encryptkey" description:"Encrypts the Tor private key file on disk"`
0 commit comments