mirror of
https://github.com/btcsuite/btcd.git
synced 2025-03-25 17:13:44 +01:00
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
This commit is contained in:
parent
306aecffea
commit
730ec87ec4
1 changed files with 1 additions and 1 deletions
|
@ -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 (
|
||||
|
|
Loading…
Add table
Reference in a new issue