aboutsummaryrefslogtreecommitdiff
path: root/src/util.cpp
diff options
context:
space:
mode:
authorGavin Andresen <[email protected]>2012-02-06 15:48:00 -0500
committerGavin Andresen <[email protected]>2012-02-06 16:27:05 -0500
commit7bf8b7c25c944110dbe85ef9e4eebd858da34158 (patch)
tree943799640b2ceab894852cb1cd54158c582ec577 /src/util.cpp
parentMerge branch 'rpcpassword' of https://github.com/gmaxwell/bitcoin (diff)
downloaddiscoin-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.cpp2
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"));