From 5772c6b40d102164e0e2387536ea5214e714a45d Mon Sep 17 00:00:00 2001 From: futreall Date: Tue, 1 Apr 2025 20:43:54 +0300 Subject: [PATCH] fix error Base48 to Base58 chore: fix error Base48 to Base58 fix error Base48 to Base58 --- bip-0328/_base58.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bip-0328/_base58.py b/bip-0328/_base58.py index e7ee1be8..438163e4 100644 --- a/bip-0328/_base58.py +++ b/bip-0328/_base58.py @@ -53,7 +53,7 @@ def decode(s: str) -> bytes: """ Decode a base58-encoding string, returning bytes - :param s: Base48 string to decode + :param s: Base58 string to decode :return: Bytes encoded by ``s`` """ if not s: @@ -118,7 +118,7 @@ def get_xpub_fingerprint_hex(xpub: str) -> str: """ Get the parent fingerprint as a hex string from an extended public key - :param s: The extended pubkey + :param xpub: The extended pubkey :return: The parent fingerprint as a hex string """ data = decode(xpub)