Skip to content

Commit 7164f9f

Browse files
committed
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: 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).
1 parent b6cfc12 commit 7164f9f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

contrib/requirements/requirements-hw.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ hidapi
2222
ckcc-protocol>=0.7.7
2323

2424
# device plugin: bitbox02
25-
bitbox02>=6.0.0
25+
bitbox02>=6.2.0
2626

2727
# device plugin: jade
2828
cbor>=1.0.0,<2.0.0

electrum/plugins/bitbox02/bitbox02.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ def show_address(
631631

632632
class BitBox02Plugin(HW_PluginBase):
633633
keystore_class = BitBox02_KeyStore
634-
minimum_library = (6, 0, 0)
634+
minimum_library = (6, 2, 0)
635635
DEVICE_IDS = [(0x03EB, 0x2403)]
636636

637637
SUPPORTED_XTYPES = ("p2wpkh-p2sh", "p2wpkh", "p2wsh", "p2wsh-p2sh")

0 commit comments

Comments
 (0)