Skip to content

Commit

Permalink
Remove fLLMQAllowDummyCommitments from consensus params (#2636)
Browse files Browse the repository at this point in the history
This should have been removed together with removal of the dummy DKG
  • Loading branch information
codablock authored and UdjinM6 committed Jan 22, 2019
1 parent fdcc765 commit e7981e4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
4 changes: 0 additions & 4 deletions src/chainparams.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,6 @@ class CMainParams : public CChainParams {
vSporkAddresses = {"Xgtyuk76vhuFW2iT7UAiHgNdWXCf3J34wh"};
nMinSporkKeys = 1;
fBIP9CheckMasternodesUpgraded = true;
consensus.fLLMQAllowDummyCommitments = false;

checkpointData = (CCheckpointData) {
boost::assign::map_list_of
Expand Down Expand Up @@ -499,7 +498,6 @@ class CTestNetParams : public CChainParams {
vSporkAddresses = {"yjPtiKh2uwk3bDutTEA2q9mCtXyiZRWn55"};
nMinSporkKeys = 1;
fBIP9CheckMasternodesUpgraded = true;
consensus.fLLMQAllowDummyCommitments = true;

checkpointData = (CCheckpointData) {
boost::assign::map_list_of
Expand Down Expand Up @@ -646,7 +644,6 @@ class CDevNetParams : public CChainParams {
nMinSporkKeys = 1;
// devnets are started with no blocks and no MN, so we can't check for upgraded MN (as there are none)
fBIP9CheckMasternodesUpgraded = false;
consensus.fLLMQAllowDummyCommitments = true;

checkpointData = (CCheckpointData) {
boost::assign::map_list_of
Expand Down Expand Up @@ -761,7 +758,6 @@ class CRegTestParams : public CChainParams {
nMinSporkKeys = 1;
// regtest usually has no masternodes in most tests, so don't check for upgraged MNs
fBIP9CheckMasternodesUpgraded = false;
consensus.fLLMQAllowDummyCommitments = true;

checkpointData = (CCheckpointData){
boost::assign::map_list_of
Expand Down
1 change: 0 additions & 1 deletion src/consensus/params.h
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,6 @@ struct Params {
int nHighSubsidyFactor{1};

std::map<LLMQType, LLMQParams> llmqs;
bool fLLMQAllowDummyCommitments;
};
} // namespace Consensus

Expand Down

0 comments on commit e7981e4

Please sign in to comment.