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
5699158 merge bitcoin#29833: fix and improve logs (Kittywhiskers Van Gogh)
95a1853 merge bitcoin#30085: detect addnode cjdns peers in GetAddedNodeInfo() (Kittywhiskers Van Gogh)
9d959d7 merge bitcoin#29813: improve `-i2pacceptincoming` mention (Kittywhiskers Van Gogh)
5045fa3 merge bitcoin#28692: Delete i2p fuzz test (Kittywhiskers Van Gogh)
7b01e8b merge bitcoin#28077: also sleep after errors in Accept() & destroy the session if we get an unexpected error (Kittywhiskers Van Gogh)
0c42410 merge bitcoin#27071: Handle CJDNS from LookupSubNet() (Kittywhiskers Van Gogh)
821c11f merge bitcoin#28078: remove unneeded exports, use helpers over low-level code, use optional (Kittywhiskers Van Gogh)
d051929 refactor: replace external `::GetLocal()` usage (Kittywhiskers Van Gogh)
481175f merge bitcoin#27719: remove Tor link & generalize onion getnodeaddresses RPC (Kittywhiskers Van Gogh)
378ad01 merge bitcoin#25989: abort if i2p/cjdns are chosen via -onlynet but are unreachable (Kittywhiskers Van Gogh)
8b23bfb partial bitcoin#24356: replace CConnman::SocketEvents() with mockable Sock::WaitMany() (Kittywhiskers Van Gogh)
1a64e8d merge bitcoin#25286: remove duplicate categories from LogPrint output (Kittywhiskers Van Gogh)
Pull request description:
## Breaking Changes
None expected.
## Checklist
- [x] I have performed a self-review of my own code
- [x] I have commented my code, particularly in hard-to-understand areas **(note: N/A)**
- [x] I have added or updated relevant unit/integration/functional/e2e tests
- [x] I have made corresponding changes to the documentation
- [x] I have assigned this pull request to a milestone _(for repository code-owners and collaborators only)_
ACKs for top commit:
UdjinM6:
utACK 5699158
PastaPastaPasta:
utACK 5699158
Tree-SHA512: b1ffc310574de5ec40d18aa4a453ef328d8f935c42d43a204c14fa264f099a106ddea793a018f56dcf75d9548fb06d1580c6aa1d90f66afa95089435e0b9606d
Copy file name to clipboardExpand all lines: doc/tor.md
+2-7Lines changed: 2 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,11 +2,7 @@
2
2
3
3
It is possible to run Dash Core as a Tor onion service, and connect to such services.
4
4
5
-
The following directions assume you have a Tor proxy running on port 9050. Many
6
-
distributions default to having a SOCKS proxy listening on port 9050, but others
7
-
may not. In particular, the Tor Browser Bundle defaults to listening on port 9150.
8
-
See [Tor Project FAQ:TBBSocksPort](https://www.torproject.org/docs/faq.html.en#TBBSocksPort)
9
-
for how to properly configure Tor.
5
+
The following directions assume you have a Tor proxy running on port 9050. Many distributions default to having a SOCKS proxy listening on port 9050, but others may not. In particular, the Tor Browser Bundle defaults to listening on port 9150.
10
6
11
7
## Compatibility
12
8
@@ -30,8 +26,7 @@ CLI `-addrinfo` returns the number of addresses known to your node per
30
26
network. This can be useful to see how many onion peers your node knows,
31
27
e.g. for `-onlynet=onion`.
32
28
33
-
To fetch a number of onion addresses that your node knows, for example seven
34
-
addresses, use the `getnodeaddresses 7 onion` RPC.
29
+
You can use the `getnodeaddresses` RPC to fetch a number of onion peers known to your node; run `dash-cli help getnodeaddresses` for details.
// Refuse connecting to arbitrary ports. We don't specify any destination port to the SAM proxy
186
223
// when connecting (SAM 3.1 does not use ports) and it forces/defaults it to I2P_SAM31_PORT.
187
224
if (to.GetPort() != I2P_SAM31_PORT) {
188
-
Log("Error connecting to %s, connection refused due to arbitrary port %s", to.ToStringAddrPort(), to.GetPort());
225
+
LogPrintLevel(BCLog::I2P, BCLog::Level::Debug, "Error connecting to %s, connection refused due to arbitrary port %s\n", to.ToStringAddrPort(), to.GetPort());
0 commit comments