From 628ce18139f11f62208b405ac40e67eea2683a40 Mon Sep 17 00:00:00 2001 From: Konstantin Akimov Date: Mon, 4 Sep 2023 18:01:28 +0700 Subject: [PATCH] feat: let unknown deployments to be mined in blocks --- src/chainparams.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chainparams.cpp b/src/chainparams.cpp index b8bee3e7e0..e16dc7da0b 100644 --- a/src/chainparams.cpp +++ b/src/chainparams.cpp @@ -126,7 +126,7 @@ bool CChainParams::UpdateMNActivationParam(int nBit, int height, int64_t timePas } } LogPrintf("%s: not found MnEHF fork bit=%d\n", __func__, nBit); - return false; + return true; } void CChainParams::AddLLMQ(Consensus::LLMQType llmqType)