diff options
author | Gavin Andresen <gavinandresen@gmail.com> | 2012-02-06 15:48:00 -0500 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2012-02-06 16:27:05 -0500 |
commit | 7bf8b7c25c944110dbe85ef9e4eebd858da34158 (patch) | |
tree | 943799640b2ceab894852cb1cd54158c582ec577 /src/util.cpp | |
parent | 0b9a05a2bc1c1c6a86cdd9f25d43ab7224fd8731 (diff) |
-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 6a4c2a2ef3..049297706c 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")); |