From c687e3cd80e4c62e12ae9c109838226553aeacbd Mon Sep 17 00:00:00 2001 From: Rocco Augusto Date: Wed, 10 Jan 2018 12:37:40 -0800 Subject: [PATCH] Add support for UfoCoin Add support for UfoCoin to get proper private key from invalid WIF generation on old paper wallet. --- pybitcoin/privatekey.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pybitcoin/privatekey.py b/pybitcoin/privatekey.py index 5b1c99b..556b69c 100644 --- a/pybitcoin/privatekey.py +++ b/pybitcoin/privatekey.py @@ -146,3 +146,6 @@ class LitecoinPrivateKey(BitcoinPrivateKey): class NamecoinPrivateKey(BitcoinPrivateKey): _pubkeyhash_version_byte = 52 + +class UfocoinPrivateKey(BitcoinPrivateKey): + _pubkeyhash_version_byte = 27