From fa1a51cbc1c50a6d3adcad5ccea4c6067f89f7d3 Mon Sep 17 00:00:00 2001 From: MarcoFalke Date: Mon, 27 Dec 2021 19:00:13 +0100 Subject: doc: testnet3 was not reset and is doing BIP30 checks again --- src/validation.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/validation.cpp b/src/validation.cpp index c521e9b634..d3e58622de 100644 --- a/src/validation.cpp +++ b/src/validation.cpp @@ -2006,9 +2006,8 @@ bool CChainState::ConnectBlock(const CBlock& block, BlockValidationState& state, // another edge case to deal with. // testnet3 has no blocks before the BIP34 height with indicated heights - // post BIP34 before approximately height 486,000,000 and presumably will - // be reset before it reaches block 1,983,702 and starts doing unnecessary - // BIP30 checking again. + // post BIP34 before approximately height 486,000,000. After block + // 1,983,702 testnet3 starts doing unnecessary BIP30 checking again. assert(pindex->pprev); CBlockIndex* pindexBIP34height = pindex->pprev->GetAncestor(m_params.GetConsensus().BIP34Height); //Only continue to enforce if we're below BIP34 activation height or the block hash at that height doesn't correspond. -- cgit v1.2.3