Merge pull request #1517 from Diapolo/fix_comment

fix a comment to correctly use -upgradewallet
This commit is contained in:
Pieter Wuille 2012-06-24 09:10:03 -07:00
commit 6cef700203
1 changed files with 1 additions and 1 deletions

View File

@ -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;