Browse Source

Litecoin: temporarily disable v2 block lockin until future 95% miner vote to coincide with planned spam tx removal

0.8
Warren Togami 12 years ago
parent
commit
de45a48874
  1. 2
      src/main.cpp

2
src/main.cpp

@ -2225,6 +2225,8 @@ bool CBlock::AcceptBlock(CValidationState &state, CDiskBlockPos *dbp) @@ -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++)
{

Loading…
Cancel
Save