diff --git a/src/chain.cpp b/src/chain.cpp index d462f94ab5..8e60397eff 100644 --- a/src/chain.cpp +++ b/src/chain.cpp @@ -120,6 +120,11 @@ void CBlockIndex::BuildSkip() arith_uint256 GetBlockProof(const CBlockIndex& block) { + // All valid signed blocks have "weight" 1 + if (g_signed_blocks) { + return 1; + } + arith_uint256 bnTarget; bool fNegative; bool fOverflow;