This commit is contained in:
jl777
2017-03-24 04:35:23 +02:00
parent 310bb0a1b9
commit 4e4e39abfb

View File

@@ -3331,7 +3331,7 @@ bool CheckBlock(int32_t height,CBlockIndex *pindex,const CBlock& block, CValidat
BOOST_FOREACH(const CTransaction& tx, block.vtx) BOOST_FOREACH(const CTransaction& tx, block.vtx)
{ {
uint32_t prevtime = 0; CBlockIndex *ptr; uint32_t prevtime = 0; CBlockIndex *ptr;
if ( height == chainActive.Tip()->nHeight+1 ) if ( chainActive.Tip() != 0 && height == chainActive.Tip()->nHeight+1 )
prevtime = chainActive.Tip()->nTime; prevtime = chainActive.Tip()->nTime;
else if ( pindex != 0 ) else if ( pindex != 0 )
{ {
@@ -3340,7 +3340,7 @@ bool CheckBlock(int32_t height,CBlockIndex *pindex,const CBlock& block, CValidat
} }
if ( prevtime == 0 ) if ( prevtime == 0 )
{ {
if ( height > 0 && (ptr= chainActive[height-1]) ) if ( height > 0 && (ptr= chainActive[height-1]) != 0 )
prevtime = ptr->nTime; prevtime = ptr->nTime;
} }
if ( komodo_validate_interest(0,tx,height,prevtime) < 0 ) if ( komodo_validate_interest(0,tx,height,prevtime) < 0 )