From 288481aabd77b90876489e39403b6eab9d4ae74d Mon Sep 17 00:00:00 2001 From: Sjors Provoost Date: Wed, 19 Mar 2025 08:59:08 +0100 Subject: [PATCH] doc: clarify that testnet min-difficulty is not optional --- src/pow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pow.cpp b/src/pow.cpp index 686b177fe32..0f54aaec0f7 100644 --- a/src/pow.cpp +++ b/src/pow.cpp @@ -23,7 +23,7 @@ unsigned int GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlockHead { // Special difficulty rule for testnet: // If the new block's timestamp is more than 2* 10 minutes - // then allow mining of a min-difficulty block. + // then it MUST be a min-difficulty block. if (pblock->GetBlockTime() > pindexLast->GetBlockTime() + params.nPowTargetSpacing*2) return nProofOfWorkLimit; else