config: align testnet P2P port to 19326#662
Merged
Merged
Conversation
The runtime P2P default is 9326 mainnet / 19326 testnet, but the testnet YAML still bound 19338 and the web_server.hpp struct initializer still seeded 9338 (runtime-overridden, cosmetic). Align both so testnet users binding from the YAML land on the correct P2P port.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Small config cleanup split out from the contabo-gate hardening work.
The runtime P2P default is 9326 mainnet / 19326 testnet, but two stragglers still referenced the old 9338/19338:
config/c2pool_testnet.yamlboundport: 19338(functional — testnet users binding from the YAML landed on the wrong P2P port)src/core/web_server.hpp:1385seededm_p2p_port{9338}in the struct initializer (runtime-overridden, cosmetic — tidied for consistency)No runtime-behaviour change on hosts that pass the port via CLI/override; fixes YAML-driven testnet binds. Kept separate from the underfill+DOA port per integrator.