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.h | |
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.h')
-rw-r--r-- | src/util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.h b/src/util.h index 19f06521ef..8f86ba0180 100644 --- a/src/util.h +++ b/src/util.h @@ -442,7 +442,7 @@ bool SoftSetArg(const std::string& strArg, const std::string& strValue); * @param fValue Value (e.g. false) * @return true if argument gets set, false if it already had a value */ -bool SoftSetArg(const std::string& strArg, bool fValue); +bool SoftSetBoolArg(const std::string& strArg, bool fValue); |