mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-14 12:43:40 +02:00
Merge #708: Fix nit in blech32_hrp assignment in Bitcoin chains
a71279610 Fix nit in blech32_hrp assignment in Bitcoin chains (Steven Roose)
Pull request description:
I don't think this had a real effect, though since blech32 should be disabled for the Bitcoin networks.
Tree-SHA512: fc532cc54d7b42c32369a7fa9b85cd0f4411f394005ad6e507571a660b56fea38cbeade30e4363318d7adc9d7f08cf2bf3731f78ea22a3ecaedf7e920be63756
This commit is contained in:
commit
4d9fa049af
1 changed files with 3 additions and 3 deletions
|
|
@ -176,7 +176,7 @@ public:
|
|||
base58Prefixes[EXT_SECRET_KEY] = {0x04, 0x88, 0xAD, 0xE4};
|
||||
|
||||
bech32_hrp = "bc";
|
||||
blech32_hrp = blech32_hrp;
|
||||
blech32_hrp = bech32_hrp;
|
||||
|
||||
vFixedSeeds = std::vector<SeedSpec6>(pnSeed6_main, pnSeed6_main + ARRAYLEN(pnSeed6_main));
|
||||
|
||||
|
|
@ -295,7 +295,7 @@ public:
|
|||
base58Prefixes[EXT_SECRET_KEY] = {0x04, 0x35, 0x83, 0x94};
|
||||
|
||||
bech32_hrp = "tb";
|
||||
blech32_hrp = blech32_hrp;
|
||||
blech32_hrp = bech32_hrp;
|
||||
|
||||
vFixedSeeds = std::vector<SeedSpec6>(pnSeed6_test, pnSeed6_test + ARRAYLEN(pnSeed6_test));
|
||||
|
||||
|
|
@ -412,7 +412,7 @@ public:
|
|||
base58Prefixes[EXT_SECRET_KEY] = {0x04, 0x35, 0x83, 0x94};
|
||||
|
||||
bech32_hrp = "bcrt";
|
||||
blech32_hrp = blech32_hrp;
|
||||
blech32_hrp = bech32_hrp;
|
||||
|
||||
/* enable fallback fee on regtest */
|
||||
m_fallback_fee_enabled = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue