Merge pull request #30 from ch4ot1c/fix/slip-0173

[chainparams] Mainnet, Testnet, Regtest: Set bech32_hrp
This commit is contained in:
Jon Layton 2018-07-17 10:57:59 -05:00 committed by GitHub
commit 3df55a9b4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -160,7 +160,7 @@ public:
// guarantees the first 2 characters, when base58 encoded, are "SK"
base58Prefixes[ZCSPENDING_KEY] = {0xAB,0x36};
bech32_hrp = "btcp";
bech32_hrp = "btcp"; // SLIP-0173
vFixedSeeds = std::vector<SeedSpec6>(pnSeed6_main, pnSeed6_main + ARRAYLEN(pnSeed6_main));
@ -276,7 +276,7 @@ public:
// guarantees the first 2 characters, when base58 encoded, are "ST"
base58Prefixes[ZCSPENDING_KEY] = {0xAC,0x08};
bech32_hrp = "tbtcp";
bech32_hrp = "tbtcp"; // SLIP-0173
vFixedSeeds = std::vector<SeedSpec6>(pnSeed6_main, pnSeed6_main + ARRAYLEN(pnSeed6_test));
@ -370,7 +370,7 @@ public:
base58Prefixes[EXT_SECRET_KEY] = {0x04, 0x35, 0x83, 0x94};
base58Prefixes[ZCPAYMENT_ADDRRESS] = {0x16,0xC0};
base58Prefixes[ZCSPENDING_KEY] = {0xAC,0x08};
bech32_hrp = "regbtcp";
bech32_hrp = "regbtcp"; // SLIP-0173
fDefaultConsistencyChecks = true;
fRequireStandard = false;