From 02ddeed2a79aaa3bc709e41dd546d86a44f35930 Mon Sep 17 00:00:00 2001 From: Jeff Vandrew Jr <43861226+JeffVandrewJr@users.noreply.github.com> Date: Fri, 29 Mar 2019 18:19:32 -0400 Subject: [PATCH] Clean Up Case #5 in Tor Documentation Case 5 in the Tor documentation currently states that if you use `--bind-addr=autotor:127.0.0.1:9051`, you can get your onion address by running `lightning-cli getinfo`. I have not found that to be the case; with that flag no onion address will be generated. On the other hand, if `--addr=autotor:127.0.0.1:9051` is used instead, an onion address is generated and `lightning-cli getinfo` behaves as the docs say. --- doc/TOR.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/TOR.md b/doc/TOR.md index a8567e65e..3059b9506 100644 --- a/doc/TOR.md +++ b/doc/TOR.md @@ -276,7 +276,7 @@ or `--addr=your.onionAddress:port` if you are NOT on an internal network. In this case it is difficult to track the node. You specify just: ``` ---bind-addr=yourInternalIPAddress:port --bind-addr=autotor:127.0.0.1:9051 +--bind-addr=yourInternalIPAddress:port --addr=autotor:127.0.0.1:9051 ``` In the `lightningd` command line.