Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion hwilib/devices/coldcard.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
AF_P2WSH,
AF_P2SH,
AF_P2WSH_P2SH,
AF_P2TR,
)
from .._base58 import (
get_xpub_fingerprint,
Expand Down Expand Up @@ -262,7 +263,9 @@ def display_singlesig_address(
elif addr_type == AddressType.LEGACY:
addr_fmt = AF_CLASSIC
elif addr_type == AddressType.TAP:
raise UnavailableActionError("Coldcard does not support displaying Taproot addresses yet")
if not self.is_edge:
raise UnavailableActionError("Coldcard does not support displaying Taproot addresses yet. Use EDGE.")
addr_fmt = AF_P2TR
else:
raise BadArgumentError("Unknown address type")

Expand Down
Loading