From 148481a5caf5317bdc3ca3187700b4c164c4fbcb Mon Sep 17 00:00:00 2001 From: Thomas Zarebczan Date: Sat, 23 Mar 2019 03:20:27 -0400 Subject: [PATCH] doh --- lbrynet/wallet/server/coin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lbrynet/wallet/server/coin.py b/lbrynet/wallet/server/coin.py index 506551291..a99c68819 100644 --- a/lbrynet/wallet/server/coin.py +++ b/lbrynet/wallet/server/coin.py @@ -22,8 +22,8 @@ class LBC(Coin): NET = "mainnet" BASIC_HEADER_SIZE = 112 CHUNK_SIZE = 96 - XPUB_VERBYTES = bytes.fromhex("0x0488b21e") - XPRV_VERBYTES = bytes.fromhex("0x0488ade4") + XPUB_VERBYTES = bytes.fromhex("0488b21e") + XPRV_VERBYTES = bytes.fromhex("0488ade4") P2PKH_VERBYTE = bytes.fromhex("55") P2SH_VERBYTES = bytes.fromhex("7A") WIF_BYTE = bytes.fromhex("1C")