Browse Source

test

release/v0.1
jl777 9 years ago
parent
commit
688c685271
  1. 5
      basilisk/basilisk.c

5
basilisk/basilisk.c

@ -314,7 +314,6 @@ int32_t basilisk_hashstampsupdate(struct iguana_info *coin,struct basilisk_seque
else seq->numstamps++; else seq->numstamps++;
} }
seq->longestchain = coin->longestchain; seq->longestchain = coin->longestchain;
seq->lastupdate = (uint32_t)time(NULL);
return(seq->numstamps); return(seq->numstamps);
} }
@ -1209,13 +1208,17 @@ void basilisks_loop(void *arg)
if ( btcd->RELAYNODE != 0 || btcd->VALIDATENODE != 0 ) if ( btcd->RELAYNODE != 0 || btcd->VALIDATENODE != 0 )
{ {
if ( (now= (uint32_t)time(NULL)) > btcd->SEQ.BTCD.lastupdate+10 ) if ( (now= (uint32_t)time(NULL)) > btcd->SEQ.BTCD.lastupdate+10 )
{
if ( basilisk_update("BTCD",now) >= 0 ) if ( basilisk_update("BTCD",now) >= 0 )
done &= ~1; done &= ~1;
btcd->SEQ.BTCD.lastupdate = (uint32_t)time(NULL);
}
} }
if ( (now= (uint32_t)time(NULL)) > btcd->SEQ.BTC.lastupdate+30 ) if ( (now= (uint32_t)time(NULL)) > btcd->SEQ.BTC.lastupdate+30 )
{ {
if ( basilisk_update("BTC",now) >= 0 ) if ( basilisk_update("BTC",now) >= 0 )
done &= ~2; done &= ~2;
btcd->SEQ.BTC.lastupdate = (uint32_t)time(NULL);
} }
if ( done != 3 ) if ( done != 3 )
{ {

Loading…
Cancel
Save