aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2023-12-12 11:04:29 +0000
committerfanquake <fanquake@gmail.com>2023-12-12 11:31:09 +0000
commit7a283836eb78d76452fcc586275626df010f3cd9 (patch)
tree533ffc53c59294787a1b15c958e4d83bf699818d
parent622e79e0fbb88eac9e074c7a309c84bd8b82e2ea (diff)
parentd58f89d355faf46b68d0ff8095699d0aff41959c (diff)
Merge bitcoin/bitcoin#29052: doc/reduce-traffic: update/clarify max outbound connection count
d58f89d355faf46b68d0ff8095699d0aff41959c doc: update/clarify max outbound connection count (Marnix) Pull request description: closes https://github.com/bitcoin/bitcoin/issues/29046 ACKs for top commit: amitiuttarwar: ACK d58f89d355faf46b68d0ff8095699d0aff41959c brunoerg: ACK d58f89d355faf46b68d0ff8095699d0aff41959c Tree-SHA512: 4f6e8596ceea0b655338b3fc90a465e319d81e2a006f22a98cd9acada9316e7eb2340e2f66b1b4dde4e63ae94f57efddec50478715608e1be3212b8e2d1c3a1a
-rw-r--r--doc/reduce-traffic.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/reduce-traffic.md b/doc/reduce-traffic.md
index 86943b1f72..8926a8361a 100644
--- a/doc/reduce-traffic.md
+++ b/doc/reduce-traffic.md
@@ -3,10 +3,10 @@ Reduce Traffic
Some node operators need to deal with bandwidth caps imposed by their ISPs.
-By default, Bitcoin Core allows up to 125 connections to different peers, 10 of
-which are outbound. You can therefore, have at most 115 inbound connections.
-Of the 10 outbound peers, there can be 8 full-relay connections and 2
-block-relay-only ones.
+By default, Bitcoin Core allows up to 125 connections to different peers, 11 of
+which are outbound. You can therefore, have at most 114 inbound connections.
+Of the 11 outbound peers, there can be 8 full-relay connections, 2
+block-relay-only ones and occasionally 1 short-lived feeler or an extra block-relay-only connection.
The default settings can result in relatively significant traffic consumption.
@@ -28,7 +28,7 @@ calculating the target.
## 2. Disable "listening" (`-listen=0`)
-Disabling listening will result in fewer nodes connected (remember the maximum of 10
+Disabling listening will result in fewer nodes connected (remember the maximum of 11
outbound peers). Fewer nodes will result in less traffic usage as you are relaying
blocks and transactions to fewer nodes.