From 6865fed5d8c06a7d6a3f814a69ed92dbcf052e24 Mon Sep 17 00:00:00 2001 From: jl777 Date: Wed, 23 Mar 2016 21:33:52 -0300 Subject: [PATCH] test --- iguana/iguana_unspents.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iguana/iguana_unspents.c b/iguana/iguana_unspents.c index 32457c7e4..d79811229 100755 --- a/iguana/iguana_unspents.c +++ b/iguana/iguana_unspents.c @@ -332,7 +332,7 @@ int32_t iguana_utxogen(struct iguana_info *coin,struct iguana_bundle *bp) { if ( (spentbp= iguana_spent(coin,&prevhash,&unspentind,ramchain,bp->hdrsi,s)) != 0 ) { - if ( now > spentbp->lastprefetch+30 || (spentbp->dirty % 100000) == 0 ) + if ( now > spentbp->lastprefetch+3 )//|| (spentbp->dirty % 10000) == 0 ) { //printf("u current.%d prefetch.[%d] lag.%u\n",spentbp == bp,spentbp->hdrsi,now - spentbp->lastprefetch); iguana_ramchain_prefetch(coin,&spentbp->ramchain); @@ -488,7 +488,7 @@ int32_t iguana_balancegen(struct iguana_info *coin,struct iguana_bundle *bp,int3 now = (uint32_t)time(NULL); if ( spentbp != 0 && unspentind > 0 && unspentind < spentbp->ramchain.H.data->numunspents ) { - if ( now > spentbp->lastprefetch+30 || (spentbp->dirty % 100000) == 0 ) + if ( now > spentbp->lastprefetch+3 )//|| (spentbp->dirty % 10000) == 0 ) { //printf("current.%d prefetch.[%d] lag.%u\n",spentbp == bp,spentbp->hdrsi,now - spentbp->lastprefetch); iguana_ramchain_prefetch(coin,&spentbp->ramchain);