990 B
Notable changes
P2P and network changes
-
Previously if Bitcoin Core was listening for P2P connections, either using default settings or via
bind=addr:portit would always also bind to127.0.0.1:8334to listen for Tor connections. It was not possible to switch this off, even if the node didn't use Tor. This has been changed and nowbind=addr:portresults in binding onaddr:portonly. The default behavior of binding to0.0.0.0:8333and127.0.0.1:8334has not been changed.If you are using a
bind=...configuration withoutbind=...=onionand rely on the previous implied behavior to accept incoming Tor connections at127.0.0.1:8334, you need to now make this explicit by usingbind=... bind=127.0.0.1:8334=onion. (#22729) -
Bitcoin Core will now fail to start up if any of its P2P binds fail, rather than the previous behaviour where it would only abort startup if all P2P binds had failed. (#22729)