diff options
| author | Gavin Andresen <[email protected]> | 2012-01-03 10:14:22 -0500 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2012-01-03 10:17:28 -0500 |
| commit | 0fcf91ea1e23697736032caadc8e487e0ba6cfef (patch) | |
| tree | 4738fbd6c1d7061b58b8492423e3d2fdce48b7f9 /src/util.cpp | |
| parent | Merge pull request #738 from sipa/dnsseed-fix (diff) | |
| download | discoin-0fcf91ea1e23697736032caadc8e487e0ba6cfef.tar.xz discoin-0fcf91ea1e23697736032caadc8e487e0ba6cfef.zip | |
Fix issue #659, and cleanup wallet/command-line argument handling a bit
Diffstat (limited to 'src/util.cpp')
| -rw-r--r-- | src/util.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/util.cpp b/src/util.cpp index a45ce33a1..3805e077a 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -470,6 +470,23 @@ void ParseParameters(int argc, char* argv[]) } } +bool SoftSetArg(const std::string& strArg, const std::string& strValue) +{ + if (mapArgs.count(strArg)) + return false; + mapArgs[strArg] = strValue; + return true; +} + +bool SoftSetArg(const std::string& strArg, bool fValue) +{ + if (fValue) + return SoftSetArg(strArg, std::string("1")); + else + return SoftSetArg(strArg, std::string("0")); +} + + string EncodeBase64(const unsigned char* pch, size_t len) { static const char *pbase64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; |