Browse Source

test

release/v0.1
jl777 8 years ago
parent
commit
6171ab4987
  1. 5
      iguana/iguana_recv.c
  2. 4
      includes/iguana_globals.h

5
iguana/iguana_recv.c

@ -766,11 +766,16 @@ void iguana_gotblockM(struct supernet_info *myinfo,struct iguana_info *coin,stru
iguana_hash2set(coin,"gotblockM",bp,bundlei,origtxdata->zblock.RO.hash2);
}
else // new bundle case, but bad context to extend
{
bits256 zero;
memset(zero.bytes,0,sizeof(zero));
if ( (bp= iguana_bundlecreate(coin,&bundlei,bp->bundleheight + coin->chain->bundlesize,origtxdata->zblock.RO.hash2,zero,0)) == 0 )
{
origtxdata->zblock.issued = 0;
origtxdata->zblock.RO.recvlen = 0;
printf("gotblockM2: error finding block %s\n",bits256_str(str,origtxdata->zblock.RO.hash2));
return;
} else printf("getblockM autoextended.[%d]\n",bp->hdrsi);
}
}
if ( bp == 0 )

4
includes/iguana_globals.h

@ -42,9 +42,9 @@ char GLOBAL_GENESISDIR[512] = "genesis";
char GLOBAL_VALIDATEDIR[512] = "DB/purgeable";
char GLOBAL_CONFSDIR[512] = "confs";
#ifdef __linux
int32_t IGUANA_NUMHELPERS = 8;
int32_t IGUANA_NUMHELPERS = 4;
#else
int32_t IGUANA_NUMHELPERS = 2;
int32_t IGUANA_NUMHELPERS = 1;
#endif
#endif

Loading…
Cancel
Save