From 730ec87ec44e88a33bc0ac566000bda492b89984 Mon Sep 17 00:00:00 2001 From: Yura Pakhuchiy Date: Mon, 4 Mar 2019 03:33:39 +0300 Subject: [PATCH] Fix HDCoinType for simnet According to SLIP44[1] all test networks should use coin type 1. Coin type 115 is assigned to some altcoin. 1. https://github.com/satoshilabs/slips/blob/master/slip-0044.md --- chaincfg/params.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chaincfg/params.go b/chaincfg/params.go index 9da7102b..9cd3af98 100644 --- a/chaincfg/params.go +++ b/chaincfg/params.go @@ -565,7 +565,7 @@ var SimNetParams = Params{ // BIP44 coin type used in the hierarchical deterministic path for // address generation. - HDCoinType: 115, // ASCII for s + HDCoinType: 1, } var (