wizard: abort if device fails to create xpub

This commit is contained in:
ThomasV 2016-08-29 08:47:48 +02:00
parent 66f8fe7648
commit 5e90b3a42d
1 changed files with 3 additions and 0 deletions

View File

@ -213,6 +213,9 @@ class BaseWizard(object):
from keystore import hardware_keystore, bip44_derivation
derivation = bip44_derivation(int(account_id))
xpub = self.plugin.get_xpub(device_info.device.id_, derivation, self)
if xpub is None:
self.show_error('Cannot read xpub from device')
return
d = {
'type': 'hardware',
'hw_type': name,