aboutsummaryrefslogtreecommitdiff
path: root/src/init.cpp
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2012-06-24 18:08:27 +0200
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2012-06-24 18:08:27 +0200
commita8c20ea946a2fc4ec6edd0e035bc8ab0f985d145 (patch)
tree2ba29869b3bbe56766f0ce286b66f1f237edf232 /src/init.cpp
parentd887f544946d88a4537846a8b6d04c0c75a74052 (diff)
downloadbitcoin-a8c20ea946a2fc4ec6edd0e035bc8ab0f985d145.tar.xz
fix a comment to correctly use -upgradewallet
Diffstat (limited to 'src/init.cpp')
-rw-r--r--src/init.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp
index 076ea1d1c3..f62c36c25b 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -638,7 +638,7 @@ bool AppInit2()
if (GetBoolArg("-upgradewallet", fFirstRun))
{
int nMaxVersion = GetArg("-upgradewallet", 0);
- if (nMaxVersion == 0) // the -walletupgrade without argument case
+ if (nMaxVersion == 0) // the -upgradewallet without argument case
{
printf("Performing wallet upgrade to %i\n", FEATURE_LATEST);
nMaxVersion = CLIENT_VERSION;