diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2012-06-24 09:10:03 -0700 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2012-06-24 09:10:03 -0700 |
commit | 6cef7002030bae44136d0a991b92ec25c470d301 (patch) | |
tree | 2ba29869b3bbe56766f0ce286b66f1f237edf232 /src | |
parent | d887f544946d88a4537846a8b6d04c0c75a74052 (diff) | |
parent | a8c20ea946a2fc4ec6edd0e035bc8ab0f985d145 (diff) |
Merge pull request #1517 from Diapolo/fix_comment
fix a comment to correctly use -upgradewallet
Diffstat (limited to 'src')
-rw-r--r-- | src/init.cpp | 2 |
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; |