[Ethereum] Mist wallet password test

mistpasswordwallets

Is there a way to test (if you still know) your Mist wallet password without making a transaction?

Best Answer

Make sure Mist is running.

Run this command to attach to the geth daemon:

geth attach

In the JavaScript console you can try this:

personal.unlockAccount('ADDRESS', null, 1)

You will be asked for the password.

This command will return true and unlock your account for 1 second if the password is correct. If it's not you will get an error message:

Error: could not decrypt key with given passphrase

Related Topic