This commit is contained in:
jl777
2017-06-27 13:53:31 +03:00
parent d1373b5701
commit 97b6b4d424

View File

@@ -402,8 +402,10 @@ uint64_t komodo_paxcorrelation(uint64_t *votes,int32_t numvotes,uint64_t seed)
//sum = (sum * basevolume); //sum = (sum * basevolume);
printf("paxprice seed.%llx sum %.8f densum %.8f\n",(long long)seed,dstr(sum),dstr(densum)); printf("paxprice seed.%llx sum %.8f densum %.8f\n",(long long)seed,dstr(sum),dstr(densum));
break; break;
} else printf("correlation k.%d not enough wt: wt.%d vs numvotes.%d\n",k,wt,numvotes); } else fprintf(stderr,"%d ",wt);
} }
if ( k == numvotes )
printf("not enough correlation wt tolerance %lld\n",(long long)tolerance);
return(sum); return(sum);
} }