This commit is contained in:
jl777
2019-07-31 19:32:41 -11:00
parent 199d8db019
commit 4f64b197d2

View File

@@ -5288,10 +5288,21 @@ bool ContextualCheckBlockHeader(const CBlockHeader& block, CValidationState& sta
} }
// Check timestamp against prev // Check timestamp against prev
if (block.GetBlockTime() <= pindexPrev->GetMedianTimePast() + 2*ASSETCHAINS_ADAPTIVEPOW*ASSETCHAINS_BLOCKTIME ) if ( ASSETCHAINS_ADAPTIVEPOW == 0 || nHeight < 1000 )
{ {
return state.Invalid(error("%s: block's timestamp is too early", __func__), if (block.GetBlockTime() <= pindexPrev->GetMedianTimePast() )
REJECT_INVALID, "time-too-old"); {
return state.Invalid(error("%s: block's timestamp is too early", __func__),
REJECT_INVALID, "time-too-old");
}
}
else
{
if ( block.GetBlockTime() <= pindexPrev->GetMedianTimePast() + 2*ASSETCHAINS_ADAPTIVEPOW*ASSETCHAINS_BLOCKTIME )
{
return state.Invalid(error("%s: block's timestamp is too early2", __func__),
REJECT_INVALID, "time-too-old");
}
} }
// Check that timestamp is not too far in the future // Check that timestamp is not too far in the future