Browse Source

bitbox02: update to 6.2.0

6.2.0 was released to put a minimum requirement on hidapi 0.14.0,
which includes the fix for this issue:

https://github.com/libusb/hidapi/issues/531

That bug caused hidapi on macOS 13.3 to report 0 as the interface
number for all hid devices, which led to the bitbox02 multi edition being listed
twice instead of once - once for the main HW wallet interface and once erroneously
For the U2F interface (which should not be listed).
master
Marko Bencun 3 years ago
parent
commit
7164f9fd6e
No known key found for this signature in database
GPG Key ID: 804538928C37EAE8
  1. 2
      contrib/requirements/requirements-hw.txt
  2. 2
      electrum/plugins/bitbox02/bitbox02.py

2
contrib/requirements/requirements-hw.txt

@ -22,7 +22,7 @@ hidapi
ckcc-protocol>=0.7.7 ckcc-protocol>=0.7.7
# device plugin: bitbox02 # device plugin: bitbox02
bitbox02>=6.0.0 bitbox02>=6.2.0
# device plugin: jade # device plugin: jade
cbor>=1.0.0,<2.0.0 cbor>=1.0.0,<2.0.0

2
electrum/plugins/bitbox02/bitbox02.py

@ -631,7 +631,7 @@ class BitBox02_KeyStore(Hardware_KeyStore):
class BitBox02Plugin(HW_PluginBase): class BitBox02Plugin(HW_PluginBase):
keystore_class = BitBox02_KeyStore keystore_class = BitBox02_KeyStore
minimum_library = (6, 0, 0) minimum_library = (6, 2, 0)
DEVICE_IDS = [(0x03EB, 0x2403)] DEVICE_IDS = [(0x03EB, 0x2403)]
SUPPORTED_XTYPES = ("p2wpkh-p2sh", "p2wpkh", "p2wsh", "p2wsh-p2sh") SUPPORTED_XTYPES = ("p2wpkh-p2sh", "p2wpkh", "p2wsh", "p2wsh-p2sh")

Loading…
Cancel
Save