You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the account validator import command with --reuse-password flag, the password will be reused and the keystores will be imported even if the password is wrong after the first successful keystore import.
Version
Lighthouse v4.2.0-c547a11 (from v4.2.0 stable release on Ubuntu 22.04)
Present Behaviour
If you create multiple keystores with different passwords and import them all with a command like:
it will prompt for the first keystore password and if that password is correct, the import command will import all the keystores with the same password not matter if the password is correct or not.
Expected Behaviour
The import command should check each keystore to make sure the imported password is correct. If one password check fails, it should prompt for a new password (ideal for most use cases) or stop with an error message.
Steps to resolve
Modify the behavior of the account validator import command with --reuse-password flag to check for each keystore to make sure the password is working and prompt for a new password if not.
The text was updated successfully, but these errors were encountered:
As a comparison, Nimbus will keep reusing the last entered password as long as it's the correct password when importing keystores. If it fails to decrypt the keystore, it will prompt for a new password and it will keep reusing it as long as it is the correct password. That behavior seems the be a good and efficient way to import a random list of keystores in an interactive way.
Description
When using the
account validator import
command with--reuse-password
flag, the password will be reused and the keystores will be imported even if the password is wrong after the first successful keystore import.Version
Lighthouse v4.2.0-c547a11 (from v4.2.0 stable release on Ubuntu 22.04)
Present Behaviour
If you create multiple keystores with different passwords and import them all with a command like:
it will prompt for the first keystore password and if that password is correct, the import command will import all the keystores with the same password not matter if the password is correct or not.
Expected Behaviour
The import command should check each keystore to make sure the imported password is correct. If one password check fails, it should prompt for a new password (ideal for most use cases) or stop with an error message.
Steps to resolve
Modify the behavior of the
account validator import
command with--reuse-password
flag to check for each keystore to make sure the password is working and prompt for a new password if not.The text was updated successfully, but these errors were encountered: