doc: Update comments for new chain settings (-signet and -chain=signet)

This commit is contained in:
MarcoFalke
2020-09-22 15:57:30 +02:00
parent fae0548686
commit faf0a26711
5 changed files with 5 additions and 20 deletions

View File

@ -78,9 +78,6 @@ static void SetupBitcoinTxArgs(ArgsManager &argsman)
//
static int AppInitRawTx(int argc, char* argv[])
{
//
// Parameters
//
SetupBitcoinTxArgs(gArgs);
std::string error;
if (!gArgs.ParseParameters(argc, argv, error)) {
@ -88,7 +85,7 @@ static int AppInitRawTx(int argc, char* argv[])
return EXIT_FAILURE;
}
// 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(gArgs.GetChainName());
} catch (const std::exception& e) {