| 16 | const std::string CBaseChainParams::REGTEST = "regtest"; |
| 17 | |
| 18 | void SetupChainParamsBaseOptions() |
| 19 | { |
| 20 | gArgs.AddArg("-regtest", "Enter regression test mode, which uses a special chain in which blocks can be solved instantly. " |
| 21 | "This is intended for regression testing tools and app development.", true, OptionsCategory::CHAINPARAMS); |
| 22 | gArgs.AddArg("-testnet", "Use the test chain", false, OptionsCategory::CHAINPARAMS); |
| 23 | } |
| 24 | |
| 25 | static std::unique_ptr<CBaseChainParams> globalChainBaseParams; |
| 26 |
no test coverage detected