jl777 9 years ago
parent
commit
6bd264634b
  1. 12
      iguana/iguana777.c
  2. 1
      iguana/iguana_spendvectors.c

12
iguana/iguana777.c

@ -743,12 +743,16 @@ void iguana_helper(void *arg)
if ( coin->bundles[i] == 0 || coin->bundles[i]->utxofinish <= 1 ) if ( coin->bundles[i] == 0 || coin->bundles[i]->utxofinish <= 1 )
break; break;
retval = 1; retval = 1;
if ( bp->utxofinish == 0 || (retval= iguana_spendvectors(myinfo,coin,bp,&bp->ramchain,0,bp->n,1,0)) >= 0 ) if ( bp->utxofinish == 0 )
{ {
if ( retval > 0 ) bp->startutxo = (uint32_t)time(NULL);
if ( (retval= iguana_spendvectors(myinfo,coin,bp,&bp->ramchain,0,bp->n,1,0)) >= 0 )
{ {
printf("GENERATED UTXO.%d for ht.%d duration %d seconds\n",bp->hdrsi,bp->bundleheight,(uint32_t)time(NULL) - bp->startutxo); if ( retval > 0 )
bp->utxofinish = (uint32_t)time(NULL); {
printf(" GENERATED UTXO.%d for ht.%d duration %d seconds\n",bp->hdrsi,bp->bundleheight,(uint32_t)time(NULL) - bp->startutxo);
bp->utxofinish = (uint32_t)time(NULL);
}
} }
} }
} }

1
iguana/iguana_spendvectors.c

@ -266,6 +266,7 @@ int32_t iguana_spendvectors(struct supernet_info *myinfo,struct iguana_info *coi
//printf("iguana_spendvectors.[%d]: already have Xspendinds[%d]\n",bp->hdrsi,ramchain->numXspends); //printf("iguana_spendvectors.[%d]: already have Xspendinds[%d]\n",bp->hdrsi,ramchain->numXspends);
return(0); return(0);
} }
bp->startutxo = (uint32_t)time(NULL);
ptr = mycalloc('x',sizeof(*ptr),n); ptr = mycalloc('x',sizeof(*ptr),n);
total += n; total += n;
startmillis = OS_milliseconds(); startmillis = OS_milliseconds();

Loading…
Cancel
Save