From 4f871cec0ff3c6050002bf4d76118be78346e3a7 Mon Sep 17 00:00:00 2001 From: Lucas Betschart Date: Thu, 1 Mar 2018 18:20:10 +0100 Subject: [PATCH] Feathercoin: Fix P2SH (#391) --- lib/coins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/coins.py b/lib/coins.py index e1f96b3..30ed50b 100644 --- a/lib/coins.py +++ b/lib/coins.py @@ -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')