Skip to content

Commit

Permalink
Disable coinbase protection
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkLTZ committed Oct 23, 2020
1 parent bee664b commit f7cf601
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/chainparams.cpp
Expand Up @@ -74,7 +74,7 @@ class CMainParams : public CChainParams {
strNetworkID = "main";
bip44CoinType = 221; // As registered in https://github.com/satoshilabs/slips/blob/master/slip-0044.md
consensus.nApproxReleaseHeight = 800000;
consensus.fCoinbaseMustBeShielded = true;
consensus.fCoinbaseMustBeShielded = false;
consensus.nSubsidyHalvingInterval = 840000;
consensus.BIP16Enabled = true;
consensus.BIP34Enabled = true;
Expand Down Expand Up @@ -235,7 +235,7 @@ class CTestNetParams : public CChainParams {
strNetworkID = "test";
bip44CoinType = 1;
consensus.nApproxReleaseHeight = 50000;
consensus.fCoinbaseMustBeShielded = true;
consensus.fCoinbaseMustBeShielded = false;
consensus.nSubsidyHalvingInterval = 840000;
consensus.BIP16Enabled = true;
consensus.BIP34Enabled = true;
Expand Down Expand Up @@ -502,7 +502,7 @@ class CRegTestParams : public CChainParams {

void ProtectCoinbase()
{
consensus.fCoinbaseMustBeShielded = true;
consensus.fCoinbaseMustBeShielded = false;
}

/**
Expand Down

0 comments on commit f7cf601

Please sign in to comment.