diff --git a/src/chainparams.cpp b/src/chainparams.cpp index fb93e557beede..dd152c6014696 100644 --- a/src/chainparams.cpp +++ b/src/chainparams.cpp @@ -1118,7 +1118,7 @@ void CRegTestParams::UpdateVersionBitsParametersFromArgs(const ArgsManager& args UpdateVersionBitsParameters(Consensus::DeploymentPos(j), nStartTime, nTimeout, nWindowSize, nThresholdStart, nThresholdMin, nFalloffCoeff); found = true; LogPrintf("Setting version bits activation parameters for %s to start=%ld, timeout=%ld, window=%ld, thresholdstart=%ld, thresholdmin=%ld, falloffcoeff=%ld\n", - vDeploymentParams[0], nStartTime, nTimeout, nWindowSize, nThresholdStart, nThresholdMin, nFalloffCoeff); + vDeploymentParams[0], nStartTime, nTimeout, nWindowSize, nThresholdStart, nThresholdMin, nFalloffCoeff); break; } } @@ -1296,7 +1296,7 @@ std::unique_ptr CreateChainParams(const std::string& chain) else if (chain == CBaseChainParams::DEVNET) { return std::unique_ptr(new CDevNetParams(gArgs)); } else if (chain == CBaseChainParams::REGTEST) - return std::unique_ptr(new CRegTestParams(gArgs)); + return std::unique_ptr(new CRegTestParams(gArgs)); throw std::runtime_error(strprintf("%s: Unknown chain %s.", __func__, chain)); } diff --git a/src/chainparamsbase.cpp b/src/chainparamsbase.cpp index 6c4d89e6684e9..507eb136c03e4 100644 --- a/src/chainparamsbase.cpp +++ b/src/chainparamsbase.cpp @@ -33,8 +33,8 @@ void SetupChainParamsBaseOptions() "This is intended for regression testing tools and app development.", true, OptionsCategory::CHAINPARAMS); gArgs.AddArg("-testnet", "Use the test chain", false, OptionsCategory::CHAINPARAMS); gArgs.AddArg("-vbparams=::(::(::))", - "Use given start/end times for specified version bits deployment (regtest-only). " - "Specifying window, threshold/thresholdstart, thresholdmin and falloffcoeff is optional.", true, OptionsCategory::CHAINPARAMS); + "Use given start/end times for specified version bits deployment (regtest-only). " + "Specifying window, threshold/thresholdstart, thresholdmin and falloffcoeff is optional.", true, OptionsCategory::CHAINPARAMS); }