mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 11:57:28 -03:00
doc: block-relay-only is not blocksonly
Co-Authored-By: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com>
This commit is contained in:
parent
6cfb3dbbdb
commit
fa6e01f2a1
2 changed files with 5 additions and 3 deletions
|
@ -24,7 +24,9 @@ The size of some in-memory caches can be reduced. As caches trade off memory usa
|
|||
|
||||
## Number of peers
|
||||
|
||||
- `-maxconnections=<n>` - the maximum number of connections, this defaults to `125`. Each active connection takes up some memory. Only significant if incoming connections are enabled, otherwise the number of connections will never be more than `10`. Of the 10 outbound peers, there can be 8 full outgoing connections and 2 -blocksonly peers, in which case they are block/addr peers, but not tx peers.
|
||||
- `-maxconnections=<n>` - the maximum number of connections, this defaults to 125. Each active connection takes up some
|
||||
memory. This option applies only if incoming connections are enabled, otherwise the number of connections will never
|
||||
be more than 10. Of the 10 outbound peers, there can be 8 full-relay connections and 2 block-relay-only ones.
|
||||
|
||||
## Thread configuration
|
||||
|
||||
|
|
|
@ -5,8 +5,8 @@ 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 outgoing connections and 2 with
|
||||
the -blocksonly mode turned on. 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.
|
||||
|
||||
The default settings can result in relatively significant traffic consumption.
|
||||
|
||||
|
|
Loading…
Reference in a new issue