forked from TrueCloudLab/frostfs-node
[#1136] cli: Allow usage of empty wallet passwords
Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
(cherry picked from commit c7a8c762e0
)
This commit is contained in:
parent
35dec2f494
commit
1f825a467a
1 changed files with 4 additions and 2 deletions
|
@ -215,9 +215,11 @@ func getKeyNoGenerate() (*ecdsa.PrivateKey, error) {
|
|||
}
|
||||
|
||||
func getPassword() (string, error) {
|
||||
if pass := viper.GetString(password); pass != "" {
|
||||
return pass, nil
|
||||
// this check allows empty passwords
|
||||
if viper.IsSet(password) {
|
||||
return viper.GetString(password), nil
|
||||
}
|
||||
|
||||
return input.ReadPassword("Enter password > ")
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue