From 1e5187b9dfa03f0062814834452d2abfae6de924 Mon Sep 17 00:00:00 2001 From: f321x Date: Wed, 16 Apr 2025 17:48:40 +0200 Subject: [PATCH] fix password command eval type --- electrum/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electrum/commands.py b/electrum/commands.py index 1e7f0c983..8ee37873b 100644 --- a/electrum/commands.py +++ b/electrum/commands.py @@ -339,7 +339,7 @@ class Commands(Logger): Change wallet password. arg:bool:encrypt_file:Whether the file on disk should be encrypted with the provided password (default=true) - arg:bool:new_password:New Password + arg:str:new_password:New Password """ if wallet.storage.is_encrypted_with_hw_device() and new_password: raise UserFacingException("Can't change the password of a wallet encrypted with a hw device.")