Skip to content

Commit 288481a

Browse files
committed
doc: clarify that testnet min-difficulty is not optional
1 parent e568c1d commit 288481a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ unsigned int GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlockHead
2323
{
2424
// Special difficulty rule for testnet:
2525
// If the new block's timestamp is more than 2* 10 minutes
26-
// then allow mining of a min-difficulty block.
26+
// then it MUST be a min-difficulty block.
2727
if (pblock->GetBlockTime() > pindexLast->GetBlockTime() + params.nPowTargetSpacing*2)
2828
return nProofOfWorkLimit;
2929
else

0 commit comments

Comments
 (0)