diff --git a/src/main.cpp b/src/main.cpp index 8670c8871..01769d2fe 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2225,6 +2225,8 @@ bool CBlock::AcceptBlock(CValidationState &state, CDiskBlockPos *dbp) bool CBlockIndex::IsSuperMajority(int minVersion, const CBlockIndex* pstart, unsigned int nRequired, unsigned int nToCheck) { + // Litecoin: temporarily disable v2 block lockin until we are ready for v2 transition + return false; unsigned int nFound = 0; for (unsigned int i = 0; i < nToCheck && nFound < nRequired && pstart != NULL; i++) {