Browse Source

digitalbitbox: enable native segwit

3.2.x
benma 7 years ago
committed by SomberNight
parent
commit
f7d1d5a7c7
No known key found for this signature in database GPG Key ID: B33B5F232C6271E9
  1. 4
      plugins/digitalbitbox/digitalbitbox.py

4
plugins/digitalbitbox/digitalbitbox.py

@ -95,7 +95,7 @@ class DigitalBitbox_Client():
def get_xpub(self, bip32_path, xtype): def get_xpub(self, bip32_path, xtype):
assert xtype in ('standard', 'p2wpkh-p2sh') assert xtype in ('standard', 'p2wpkh-p2sh', 'p2wpkh')
reply = self._get_xpub(bip32_path) reply = self._get_xpub(bip32_path)
if reply: if reply:
xpub = reply['xpub'] xpub = reply['xpub']
@ -718,7 +718,7 @@ class DigitalBitboxPlugin(HW_PluginBase):
def get_xpub(self, device_id, derivation, xtype, wizard): def get_xpub(self, device_id, derivation, xtype, wizard):
if xtype not in ('standard', 'p2wpkh-p2sh'): if xtype not in ('standard', 'p2wpkh-p2sh', 'p2wpkh'):
raise ScriptTypeNotSupported(_('This type of script is not supported with the Digital Bitbox.')) raise ScriptTypeNotSupported(_('This type of script is not supported with the Digital Bitbox.'))
devmgr = self.device_manager() devmgr = self.device_manager()
client = devmgr.client_by_id(device_id) client = devmgr.client_by_id(device_id)

Loading…
Cancel
Save