Browse Source

update BIP44 cointype

we had the wrong cointype - 141 is the correct one and assigned to KMD
https://github.com/satoshilabs/slips/blob/master/slip-0044.md
pull/4/head
ca333 5 years ago
committed by GitHub
parent
commit
4f5c4db615
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/chainparams.cpp

2
src/chainparams.cpp

@ -107,7 +107,7 @@ public:
strNetworkID = "main";
strCurrencyUnits = "KMD";
bip44CoinType = 133; // As registered in https://github.com/satoshilabs/slips/blob/master/slip-0044.md (ZCASH, should be VRSC)
bip44CoinType = 141; // As registered in https://github.com/satoshilabs/slips/blob/master/slip-0044.md (ZCASH, should be VRSC)
consensus.fCoinbaseMustBeProtected = false; // true this is only true wuth Verus and enforced after block 12800
consensus.nSubsidySlowStartInterval = 20000;
consensus.nSubsidyHalvingInterval = 840000;

Loading…
Cancel
Save