Browse Source

Merge pull request #2678 from chriseth/invalidPasswordMessage

Improved invalid-password message for eth.
cl-refactor
Gav Wood 9 years ago
parent
commit
d419fd23cf
  1. 2
      eth/main.cpp

2
eth/main.cpp

@ -1726,7 +1726,7 @@ int main(int argc, char** argv)
masterPassword = getPassword("Please enter your MASTER password: ");
if (keyManager.load(masterPassword))
break;
cout << "Password invalid. Try again." << endl;
cout << "The password you entered is incorrect. If you have forgotten your password, and you wish to start afresh, manually remove the file: " + getDataDir("ethereum") + "/keys.info" << endl;
}
}
else

Loading…
Cancel
Save