From 5baf03ddfeb2882c0d09297c632a09a92f4c112b Mon Sep 17 00:00:00 2001 From: chriseth Date: Fri, 31 Jul 2015 19:42:15 +0200 Subject: [PATCH] Improved invalid-password message for eth. --- eth/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/main.cpp b/eth/main.cpp index ad2872dd2..a17e04e9c 100644 --- a/eth/main.cpp +++ b/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