mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 17:31:36 +00:00
Fix commands that require password with unencrypted wallet
This commit is contained in:
parent
091e7b8d92
commit
3c7171ede8
1 changed files with 3 additions and 0 deletions
|
@ -100,6 +100,9 @@ class Commands:
|
|||
password = password_getter()
|
||||
if password is None:
|
||||
return
|
||||
else:
|
||||
password = None
|
||||
|
||||
f = getattr(self, method)
|
||||
if cmd.requires_password:
|
||||
result = f(*args, **{'password':password})
|
||||
|
|
Loading…
Add table
Reference in a new issue