diff --git a/src/wallet/scriptpubkeyman.cpp b/src/wallet/scriptpubkeyman.cpp index 1ee4753bdf..075116c96c 100644 --- a/src/wallet/scriptpubkeyman.cpp +++ b/src/wallet/scriptpubkeyman.cpp @@ -2329,7 +2329,8 @@ bool DescriptorScriptPubKeyMan::SetupDescriptorGeneration(const CExtKey& master_ if (Params().IsTestChain()) { desc_prefix += "/1h"; } else { - desc_prefix += "/0h"; + // Blackcoin: Use BIP44 value according to https://github.com/satoshilabs/slips/blob/master/slip-0044.md + desc_prefix += "/10h"; } std::string internal_path = internal ? "/1" : "/0";