-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Conversation
debris
commented
Jun 21, 2016
- fixed crash when presale wallet password was incorrect
- ethstore command for importing presale wallet
- parity command for importing presale wallet (geth compatible)
@@ -20,6 +20,7 @@ Usage: | |||
ethstore change-pwd <address> <old-pwd> <new-pwd> [--dir DIR] | |||
ethstore list [--dir DIR] | |||
ethstore import [--src DIR] [--dir DIR] | |||
ethstore import-wallet <path> <password> [--dir DIR] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<password>
is a file containing the password, right?
looks like you're wanting to provide password as a CLI arg. that's not a particularly good idea - some people reuse passwords and would prefer not to see it in plain text or stored in the console history. |
parity uses password file for backwards compatibility with geth. |
The problem is that by default people won't do that and their password will be readable in |
imho |
developers don't generally need to import a presale wallet. people who bought in the presale do. |
(if you really like, you could try password-file name as a password itself if the file doesn't exist) |