Hex print nBits

This commit is contained in:
jl777
2019-08-06 01:05:05 -11:00
parent 0bcd425424
commit fde3a1bd52

View File

@@ -427,7 +427,7 @@ UniValue genminingCSV(const UniValue& params, bool fHelp)
hash = pindex->GetBlockHash();
for (z=0; z<16; z++)
sprintf(&str2[z<<1],"%02x",((uint8_t *)&hash)[31-z]);
str2[32] = 0; fprintf(fp,"%d,%u,%u,%s,%s,%.1f,%.1f,%d\n",i,pindex->nTime,pindex->nBits,str,str2,GetDifficulty(pindex),GetNetworkDifficulty(pindex),prevtime==0?0:(int32_t)(pindex->nTime-prevtime));
str2[32] = 0; fprintf(fp,"%d,%08x,%u,%s,%s,%.1f,%.1f,%d\n",i,pindex->nTime,pindex->nBits,str,str2,GetDifficulty(pindex),GetNetworkDifficulty(pindex),prevtime==0?0:(int32_t)(pindex->nTime-prevtime));
prevtime = pindex->nTime;
}
}