Feathercoin: Fix P2SH (#391)

This commit is contained in:
Lucas Betschart 2018-03-01 18:20:10 +01:00 committed by Neil
parent 6add2e5a9b
commit 4f871cec0f

View File

@ -1288,7 +1288,7 @@ class Feathercoin(Coin):
XPUB_VERBYTES = bytes.fromhex("0488BC26")
XPRV_VERBYTES = bytes.fromhex("0488DAEE")
P2PKH_VERBYTE = bytes.fromhex("0E")
P2SH_VERBYTES = [bytes.fromhex("32"), bytes.fromhex("05")]
P2SH_VERBYTES = [bytes.fromhex("05")]
WIF_BYTE = bytes.fromhex("8E")
GENESIS_HASH = ('12a765e31ffd4059bada1e25190f6e98'
'c99d9714d334efa41a195a7e7e04bfe2')