aboutsummaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authorJohn Newbery <john@johnnewbery.com>2017-05-30 08:21:16 -0400
committerJohn Newbery <john@johnnewbery.com>2017-05-30 08:21:16 -0400
commit42a83e5455fa571a7fad01682e35da20f3a27732 (patch)
tree20e3329d8333a8777a6016ea50b77eed31c8b98a /src/util.h
parent4314544d46e8e46c3c9da60f1d18297f52f58418 (diff)
downloadbitcoin-42a83e5455fa571a7fad01682e35da20f3a27732.tar.xz
[trivial] Fix comment for ForceSetArg()
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/util.h b/src/util.h
index 229478d835..4386ddd550 100644
--- a/src/util.h
+++ b/src/util.h
@@ -241,7 +241,8 @@ bool SoftSetArg(const std::string& strArg, const std::string& strValue);
*/
bool SoftSetBoolArg(const std::string& strArg, bool fValue);
-// Forces a arg setting, used only in testing
+// Forces an arg setting. Called by SoftSetArg() if the arg hasn't already
+// been set. Also called directly in testing.
void ForceSetArg(const std::string& strArg, const std::string& strValue);
};