diff options
| author | John Newbery <[email protected]> | 2017-05-30 08:21:16 -0400 |
|---|---|---|
| committer | John Newbery <[email protected]> | 2017-05-30 08:21:16 -0400 |
| commit | 42a83e5455fa571a7fad01682e35da20f3a27732 (patch) | |
| tree | 20e3329d8333a8777a6016ea50b77eed31c8b98a /src | |
| parent | Merge #10420: Add Qt tests for wallet spends & bumpfee (diff) | |
| download | discoin-42a83e5455fa571a7fad01682e35da20f3a27732.tar.xz discoin-42a83e5455fa571a7fad01682e35da20f3a27732.zip | |
[trivial] Fix comment for ForceSetArg()
Diffstat (limited to 'src')
| -rw-r--r-- | src/util.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/util.h b/src/util.h index 229478d83..4386ddd55 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); }; |