Browse Source

test

release/v0.1
jl777 9 years ago
parent
commit
1c8a3f0abb
  1. 2
      iguana/iguana777.h
  2. 2
      iguana/iguana_recv.c

2
iguana/iguana777.h

@ -39,7 +39,7 @@ typedef int32_t (*blockhashfunc)(uint8_t *blockhashp,uint8_t *serialized,int32_t
#define IGUANA_MAXPENDHDRS 1 #define IGUANA_MAXPENDHDRS 1
#define _IGUANA_MAXPENDING 8 #define _IGUANA_MAXPENDING 8
#define IGUANA_MINPENDBUNDLES 200 #define IGUANA_MINPENDBUNDLES 200
#define IGUANA_MAXPENDBUNDLES 200 #define IGUANA_MAXPENDBUNDLES 128
#define IGUANA_BUNDLELOOP 10000 #define IGUANA_BUNDLELOOP 10000
#define IGUANA_RPCPORT 7778 #define IGUANA_RPCPORT 7778
#define IGUANA_MAXRAMCHAINSIZE ((uint64_t)1024L * 1024L * 1024L * 16) #define IGUANA_MAXRAMCHAINSIZE ((uint64_t)1024L * 1024L * 1024L * 16)

2
iguana/iguana_recv.c

@ -583,6 +583,8 @@ int32_t iguana_bundleiters(struct iguana_info *coin,struct iguana_bundle *bp,int
bp->emitfinish = 1; bp->emitfinish = 1;
if ( coin->MAXBUNDLES > IGUANA_MINPENDBUNDLES ) if ( coin->MAXBUNDLES > IGUANA_MINPENDBUNDLES )
coin->MAXBUNDLES--; coin->MAXBUNDLES--;
else if ( coin->MAXBUNDLES < IGUANA_MINPENDBUNDLES )
coin->MAXBUNDLES++;
sleep(1); sleep(1);
iguana_emitQ(coin,bp); iguana_emitQ(coin,bp);
iguana_bundleQ(coin,bp,width); iguana_bundleQ(coin,bp,width);

Loading…
Cancel
Save