mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-30 00:41:31 +00:00
fix #1938
This commit is contained in:
parent
da65e9e7d5
commit
0fd813f229
1 changed files with 2 additions and 1 deletions
|
@ -1018,7 +1018,8 @@ class Abstract_Wallet(PrintError):
|
|||
# sign
|
||||
for k in self.get_keystores():
|
||||
try:
|
||||
k.sign_transaction(tx, password)
|
||||
if k.can_sign(tx):
|
||||
k.sign_transaction(tx, password)
|
||||
except UserCancelled:
|
||||
continue
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue