diff options
| author | Gavin Andresen <[email protected]> | 2012-02-06 15:48:00 -0500 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2012-02-06 16:27:05 -0500 |
| commit | 7bf8b7c25c944110dbe85ef9e4eebd858da34158 (patch) | |
| tree | 943799640b2ceab894852cb1cd54158c582ec577 /src/util.cpp | |
| parent | Merge branch 'rpcpassword' of https://github.com/gmaxwell/bitcoin (diff) | |
| download | discoin-7bf8b7c25c944110dbe85ef9e4eebd858da34158.tar.xz discoin-7bf8b7c25c944110dbe85ef9e4eebd858da34158.zip | |
-bip16 option (default: 1) to support / not support BIP 16. And bumped default BIP16 switchover date from Feb 15 to Mar 1
Diffstat (limited to 'src/util.cpp')
| -rw-r--r-- | src/util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp index 6a4c2a2ef..049297706 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -488,7 +488,7 @@ bool SoftSetArg(const std::string& strArg, const std::string& strValue) return true; } -bool SoftSetArg(const std::string& strArg, bool fValue) +bool SoftSetBoolArg(const std::string& strArg, bool fValue) { if (fValue) return SoftSetArg(strArg, std::string("1")); |