Merge pull request #151 from erasmospunk/master

Set the correct XPUB, XPRV bytes for dogecoin
This commit is contained in:
Neil 2017-03-18 11:53:01 +09:00 committed by GitHub
commit 5c050e1d31

View File

@ -498,8 +498,8 @@ class DogecoinTestnet(Dogecoin):
NAME = "Dogecoin"
SHORTNAME = "XDT"
NET = "testnet"
XPUB_VERBYTES = bytes.fromhex("0432a9a8")
XPRV_VERBYTES = bytes.fromhex("0432a243")
XPUB_VERBYTES = bytes.fromhex("043587cf")
XPRV_VERBYTES = bytes.fromhex("04358394")
P2PKH_VERBYTE = bytes.fromhex("71")
P2SH_VERBYTE = bytes.fromhex("c4")
WIF_BYTE = bytes.fromhex("f1")