Page MenuHomePhabricator

Limit some options to only apply on mainnet when in default section
ClosedPublic

Authored by Fabien on Jan 29 2019, 15:08.

Details

Summary

When specified in bitcoin.conf without using the [regtest] or [test]
section header, or a "regtest." or "test." prefix, the "addnode",
"connect", "port", "bind", "rpcport", "rpcbind", and "wallet" settings
will only be applied when running on mainnet.

When network-specific options such as -addnode, -connect, etc are
specified in the default section of the config file, but that setting is
ignored due to testnet or regtest being in use, and it is not overridden
by either a command line option or a setting in the [regtest] or [test]
section of the config file, a warning is added to the log, eg:

Warning: Config setting for -connect only applied on regtest network

when in [regtest] section.

Partial backport of core PR11862
Commits d1fc4d9, 68797e2 and 608415d

Depends on D2434

Test Plan
make check

echo "rpcport=10042" > ~/.bitcoin/bitcoin.conf
./src/bitcoind -regtest

Check in ~/.bitcoin/regtest/debug.log that the warning is logged

Diff Detail

Repository
rABC Bitcoin ABC
Branch
PR11862_part4
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 4739
Build 7541: Bitcoin ABC Buildbot (legacy)
Build 7540: arc lint + arc unit

Event Timeline

jasonbcox added a subscriber: jasonbcox.
jasonbcox added inline comments.
src/util.cpp
177 ↗(On Diff #6987)

nit: comment style:

/**
 * Text on this line...
 * ...
 */
This revision is now accepted and ready to land.Jan 29 2019, 19:29
This revision was automatically updated to reflect the committed changes.