Skip to content

Commit ef99ef0

Browse files
committed
fix typo on type of address
1 parent 3322cab commit ef99ef0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hwilib/common.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ class AddressType(Enum):
3838
The type of address to use
3939
"""
4040
LEGACY = 1 #: Legacy address type. P2PKH for single sig, P2SH for scripts.
41-
WIT = 2 #: Native segwit v0 address type. P2WPKH for single sig, P2WPSH for scripts.
42-
SH_WIT = 3 #: Nested segwit v0 address type. P2SH-P2WPKH for single sig, P2SH-P2WPSH for scripts.
41+
WIT = 2 #: Native segwit v0 address type. P2WPKH for single sig, P2WSH for scripts.
42+
SH_WIT = 3 #: Nested segwit v0 address type. P2SH-P2WPKH for single sig, P2SH-P2WSH for scripts.
4343
TAP = 4 #: Segwit v1 Taproot address type. P2TR always.
4444

4545
def __str__(self) -> str:

0 commit comments

Comments
 (0)