From 63594dfc2427acfcc2ba35f2e7fb0aa67ef9077d Mon Sep 17 00:00:00 2001 From: jl777 Date: Wed, 7 Aug 2019 02:26:06 -1100 Subject: [PATCH] >= 64 display --- src/rpc/mining.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rpc/mining.cpp b/src/rpc/mining.cpp index 1d44a791a..c3317da41 100644 --- a/src/rpc/mining.cpp +++ b/src/rpc/mining.cpp @@ -428,7 +428,7 @@ UniValue genminingCSV(const UniValue& params, bool fHelp) str[32] = 0; //hash = pindex->GetBlockHash(); memset(&hash,0,sizeof(hash)); - if ( i > 64 && (pindex->nBits & 3) != 0 ) + if ( i >= 64 && (pindex->nBits & 3) != 0 ) hash = ArithToUint256(zawy_ctB(bnTarget,solvetime)); for (z=0; z<16; z++) sprintf(&str2[z<<1],"%02x",((uint8_t *)&hash)[31-z]);