Skip to content

Commit

Permalink
Make Simpler
Browse files Browse the repository at this point in the history
  • Loading branch information
JRedinger committed Dec 25, 2017
1 parent dcd8ea4 commit 09eecce
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/main.cpp
Expand Up @@ -2134,11 +2134,9 @@ bool CBlock::CheckBlock(bool fCheckPOW, bool fCheckMerkleRoot, bool fCheckSig) c

int64_t futureLimit = GetBlockTime();

if (GetHash() != hashGenesisBlock)
{
if (pindexBest->nHeight > 315065)
futureLimit = futureLimit + (9 * 60);
}
if (nTime > 1513942698) // Block 315065
futureLimit = futureLimit + (9 * 60);


// Check timestamp
if (futureLimit > FutureDrift(GetAdjustedTime()))
Expand Down

0 comments on commit 09eecce

Please sign in to comment.