mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-03 12:30:07 +00:00
fix crash #1987
This commit is contained in:
parent
3f64e4d1f8
commit
45aab8654d
1 changed files with 6 additions and 1 deletions
|
@ -208,7 +208,12 @@ class BaseWizard(object):
|
|||
|
||||
def on_device(self, name, device_info):
|
||||
self.plugin = self.plugins.get_plugin(name)
|
||||
self.plugin.setup_device(device_info, self)
|
||||
try:
|
||||
self.plugin.setup_device(device_info, self)
|
||||
except BaseException as e:
|
||||
self.show_error(str(e))
|
||||
self.choose_hw_device()
|
||||
return
|
||||
if self.wallet_type=='multisig':
|
||||
# There is no general standard for HD multisig.
|
||||
# This is partially compatible with BIP45; assumes index=0
|
||||
|
|
Loading…
Add table
Reference in a new issue