From 3ae1e12e3c0b61f2bb2e1591fec47bb0e8baa98e Mon Sep 17 00:00:00 2001 From: SchulerSimon <36367814+SchulerSimon@users.noreply.github.com> Date: Tue, 13 Nov 2018 11:10:30 +0100 Subject: [PATCH] added support for blockcypher testnet --- pybitcoin/privatekey.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pybitcoin/privatekey.py b/pybitcoin/privatekey.py index 5b1c99b..406141a 100644 --- a/pybitcoin/privatekey.py +++ b/pybitcoin/privatekey.py @@ -146,3 +146,7 @@ class LitecoinPrivateKey(BitcoinPrivateKey): class NamecoinPrivateKey(BitcoinPrivateKey): _pubkeyhash_version_byte = 52 + +class BlockcypherPrivateKey(BitcoinPrivateKey): + _pubkeyhash_version_byte = 27 +