File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change
1
+ P2P and network changes
2
+ -----------------------
3
+ When the ` -port ` configuration option is used, the default onion listening port will now
4
+ be derived to be that port + 1 instead of being set to a fixed value (8334 on mainnet).
5
+ This re-allows setups with multiple local nodes using different ` -port ` and not using ` -bind ` ,
6
+ which would lead to a startup failure in v28.0 due to a port collision.
7
+
8
+ Note that a ` HiddenServicePort ` manually configured in ` torrc ` may need adjustment if used in
9
+ connection with the ` -port ` option.
10
+ For example, if you are using ` -port=5555 ` with a non-standard value and not using ` -bind=...=onion ` ,
11
+ previously Bitcoin Core would listen for incoming Tor connections on ` 127.0.0.1:8334 ` .
12
+ Now it would listen on ` 127.0.0.1:5556 ` (` -port ` plus one). If you configured the hidden service manually
13
+ in torrc now you have to change it from ` HiddenServicePort 8333 127.0.0.1:8334 ` to `HiddenServicePort 8333
14
+ 127.0.0.1:5556` , or configure bitcoind with ` -bind=127.0.0.1:8334=onion` to get the previous behavior.
15
+ (#31223 )
You can’t perform that action at this time.
0 commit comments