base58

Pure Haskell base58, base58check encoding/decoding (docs.ppad.tech/base58).
git clone git://git.ppad.tech/base58.git
Log | Files | Refs | README | LICENSE

commit 10c667ad8dc7583407fd1545259dc140497e2b17
parent fda565602cfdf4a31ae588966855e9f9d825e35d
Author: Jared Tobin <jared@jtobin.io>
Date:   Thu, 19 Jun 2025 16:23:37 +0400

lib: specify internal error

Diffstat:
Mlib/Data/ByteString/Base58.hs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/Data/ByteString/Base58.hs b/lib/Data/ByteString/Base58.hs @@ -117,5 +117,5 @@ roll_base58 bs = BS.foldl' alg 0 bs where alg !b !a = case word6 a of Just w -> b * 58 + fi w Nothing -> - error "ppad-base58 (roll_base58): not a base58-encoded bytestring" + error "ppad-base58 (roll_base58): internal error"