Skip to content

Commit

Permalink
bitbox02: update to 6.2.0
Browse files Browse the repository at this point in the history
6.2.0 was released to put a minimum requirement on hidapi 0.14.0,
which includes the fix for this issue:

libusb/hidapi#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).
  • Loading branch information
benma committed May 30, 2023
1 parent b6cfc12 commit 7164f9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contrib/requirements/requirements-hw.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ hidapi
ckcc-protocol>=0.7.7

# device plugin: bitbox02
bitbox02>=6.0.0
bitbox02>=6.2.0

# device plugin: jade
cbor>=1.0.0,<2.0.0
Expand Down
2 changes: 1 addition & 1 deletion electrum/plugins/bitbox02/bitbox02.py
Original file line number Diff line number Diff line change
Expand Up @@ -631,7 +631,7 @@ def show_address(

class BitBox02Plugin(HW_PluginBase):
keystore_class = BitBox02_KeyStore
minimum_library = (6, 0, 0)
minimum_library = (6, 2, 0)
DEVICE_IDS = [(0x03EB, 0x2403)]

SUPPORTED_XTYPES = ("p2wpkh-p2sh", "p2wpkh", "p2wsh", "p2wsh-p2sh")
Expand Down

0 comments on commit 7164f9f

Please sign in to comment.