diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-09-22 15:57:30 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-09-22 22:32:25 +0200 |
commit | faf0a26711eed9264113463e56b988cf9fe549fd (patch) | |
tree | 4c2d0e411abcc6f2d6434e32193ba6259932b099 /src/bitcoind.cpp | |
parent | fae0548686cb3d095086d3f0fef38dcfcd31d8ca (diff) |
doc: Update comments for new chain settings (-signet and -chain=signet)
Diffstat (limited to 'src/bitcoind.cpp')
-rw-r--r-- | src/bitcoind.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/bitcoind.cpp b/src/bitcoind.cpp index 02074f820a..455a82e390 100644 --- a/src/bitcoind.cpp +++ b/src/bitcoind.cpp @@ -37,10 +37,6 @@ static void WaitForShutdown(NodeContext& node) Interrupt(node); } -////////////////////////////////////////////////////////////////////////////// -// -// Start -// static bool AppInit(int argc, char* argv[]) { NodeContext node; @@ -81,7 +77,7 @@ static bool AppInit(int argc, char* argv[]) if (!args.ReadConfigFiles(error, true)) { return InitError(Untranslated(strprintf("Error reading configuration file: %s\n", error))); } - // Check for -chain, -testnet or -regtest parameter (Params() calls are only valid after this clause) + // Check for chain settings (Params() calls are only valid after this clause) try { SelectParams(args.GetChainName()); } catch (const std::exception& e) { |