aboutsummaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2020-10-06 14:36:50 +0300
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2020-10-06 14:57:06 +0300
commitd103484fe81a8a5bf1d692f3f7d1c0ef1be5f63c (patch)
treef00fc5050fb9a9930f4ea0cd37526a03639a5907 /src/util
parent875e1ccc9fe01e026e564dfd39a64d9a4b332a89 (diff)
downloadbitcoin-d103484fe81a8a5bf1d692f3f7d1c0ef1be5f63c.tar.xz
util: Do not use gArgs global in ArgsManager member functions
Diffstat (limited to 'src/util')
-rw-r--r--src/util/system.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/system.cpp b/src/util/system.cpp
index 41715aac1a..a411b73a16 100644
--- a/src/util/system.cpp
+++ b/src/util/system.cpp
@@ -523,7 +523,7 @@ void ArgsManager::AddHiddenArgs(const std::vector<std::string>& names)
std::string ArgsManager::GetHelpMessage() const
{
- const bool show_debug = gArgs.GetBoolArg("-help-debug", false);
+ const bool show_debug = GetBoolArg("-help-debug", false);
std::string usage = "";
LOCK(cs_args);
@@ -900,7 +900,7 @@ bool ArgsManager::ReadConfigFiles(std::string& error, bool ignore_invalid_keys)
// If datadir is changed in .conf file:
ClearDatadirCache();
if (!CheckDataDirOption()) {
- error = strprintf("specified data directory \"%s\" does not exist.", gArgs.GetArg("-datadir", ""));
+ error = strprintf("specified data directory \"%s\" does not exist.", GetArg("-datadir", ""));
return false;
}
return true;