From 8ed9002cd14165f751442f738fbf1fb8a37611b2 Mon Sep 17 00:00:00 2001 From: Ivan Metlushko Date: Tue, 21 Jul 2020 17:58:45 +0700 Subject: refactor: use local argsmanager in CRegTestParams --- src/chainparams.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/chainparams.cpp') diff --git a/src/chainparams.cpp b/src/chainparams.cpp index 092c45e4ce..a7c9e33f07 100644 --- a/src/chainparams.cpp +++ b/src/chainparams.cpp @@ -341,8 +341,8 @@ public: void CRegTestParams::UpdateActivationParametersFromArgs(const ArgsManager& args) { - if (gArgs.IsArgSet("-segwitheight")) { - int64_t height = gArgs.GetArg("-segwitheight", consensus.SegwitHeight); + if (args.IsArgSet("-segwitheight")) { + int64_t height = args.GetArg("-segwitheight", consensus.SegwitHeight); if (height < -1 || height >= std::numeric_limits::max()) { throw std::runtime_error(strprintf("Activation height %ld for segwit is out of valid range. Use -1 to disable segwit.", height)); } else if (height == -1) { -- cgit v1.2.3