From 9d012628de8d5b7459f79371787f1d954c0bf1a9 Mon Sep 17 00:00:00 2001 From: Hunter Long Date: Wed, 24 Jan 2018 16:32:18 -0800 Subject: [PATCH] included Litecoin mainnet in Params --- const.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/const.go b/const.go index 37d11fd..87d86e7 100644 --- a/const.go +++ b/const.go @@ -53,4 +53,12 @@ var ( HDPrivateKeyID: []byte{0x04, 0x88, 0xad, 0xe4}, HDPublicKeyID: []byte{0x04, 0x88, 0xb2, 0x1e}, } + //LitecoinMain params for Litecoin main net + LitecoinMain = &Params{ + DumpedPrivateKeyHeader: []byte{0xB0}, + AddressHeader: []byte{0x30}, + P2SHHeader: []byte{0x50}, + HDPrivateKeyID: []byte{0x04, 0x88, 0xad, 0xe4}, + HDPublicKeyID: []byte{0x04, 0x88, 0xb2, 0x1e}, + } )