diff options
| author | MarcoFalke <[email protected]> | 2019-09-10 12:42:52 +0300 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2019-09-10 12:44:01 +0300 |
| commit | 750c2fbf2670abef86c4eb228e379e2be95a27d9 (patch) | |
| tree | 04ea828185812ef380e4ae22720c0da552a564e8 /src/bitcoin-cli.cpp | |
| parent | Merge #16787: rpc: Human readable network services (diff) | |
| parent | Testchains: Qt: Simplify network/chain styles (diff) | |
| download | discoin-750c2fbf2670abef86c4eb228e379e2be95a27d9.tar.xz discoin-750c2fbf2670abef86c4eb228e379e2be95a27d9.zip | |
Merge #16680: Preparations for more testchains
3bf9d8cac09fc88727ef2f2a2bea33b90b625e50 Testchains: Qt: Simplify network/chain styles (Jorge Timón)
052c54ecb02695e5d2694e8e0cbf5ccc89de86e8 Testchains: Generic selection with -chain=<str> in addition of -testnet and -regtest (Jorge Timón)
Pull request description:
Separated from #8994 as suggested by MarcoFalke and Sjors in https://github.com/bitcoin/bitcoin/pull/8994#issuecomment-522555390
You can't really test the qt changes on their own, so to test them, use #8994 .
ACKs for top commit:
MarcoFalke:
ACK 3bf9d8cac09fc88727ef2f2a2bea33b90b625e50
Tree-SHA512: 5b5e6083ebc0a44505a507fac633e7af18037c85e5e73f5d1e6f7e730575d3297ba8a31d1c2441df623b273f061c32d8fa324f4aa6bead01d23e88582029b568
Diffstat (limited to 'src/bitcoin-cli.cpp')
| -rw-r--r-- | src/bitcoin-cli.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bitcoin-cli.cpp b/src/bitcoin-cli.cpp index cde624ce7..a6756fcce 100644 --- a/src/bitcoin-cli.cpp +++ b/src/bitcoin-cli.cpp @@ -133,7 +133,7 @@ static int AppInitRPC(int argc, char* argv[]) tfm::format(std::cerr, "Error reading configuration file: %s\n", error.c_str()); return EXIT_FAILURE; } - // Check for -testnet or -regtest parameter (BaseParams() calls are only valid after this clause) + // Check for -chain, -testnet or -regtest parameter (BaseParams() calls are only valid after this clause) try { SelectBaseParams(gArgs.GetChainName()); } catch (const std::exception& e) { |