Skip to content

Commit 5772c6b

Browse files
committed
fix error Base48 to Base58
chore: fix error Base48 to Base58 fix error Base48 to Base58
1 parent fade15c commit 5772c6b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bip-0328/_base58.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def decode(s: str) -> bytes:
5353
"""
5454
Decode a base58-encoding string, returning bytes
5555
56-
:param s: Base48 string to decode
56+
:param s: Base58 string to decode
5757
:return: Bytes encoded by ``s``
5858
"""
5959
if not s:
@@ -118,7 +118,7 @@ def get_xpub_fingerprint_hex(xpub: str) -> str:
118118
"""
119119
Get the parent fingerprint as a hex string from an extended public key
120120
121-
:param s: The extended pubkey
121+
:param xpub: The extended pubkey
122122
:return: The parent fingerprint as a hex string
123123
"""
124124
data = decode(xpub)

0 commit comments

Comments
 (0)