This commit is contained in:
jl777
2018-07-12 00:28:15 -11:00
parent df74ee5fa0
commit a46d6afb2b
2 changed files with 2 additions and 1 deletions

View File

@@ -181,6 +181,7 @@ public:
void SetNull() void SetNull()
{ {
phashBlock = NULL; phashBlock = NULL;
newcoins = 0;
pprev = NULL; pprev = NULL;
pskip = NULL; pskip = NULL;
nHeight = 0; nHeight = 0;

View File

@@ -1576,7 +1576,6 @@ int64_t komodo_coinsupply(int32_t height)
{ {
while ( pindex != 0 && pindex->nHeight > 0 ) while ( pindex != 0 && pindex->nHeight > 0 )
{ {
printf("start ht.%d\n",pindex->nHeight);
if ( pindex->newcoins == 0 ) if ( pindex->newcoins == 0 )
{ {
if ( komodo_blockload(block,pindex) == 0 ) if ( komodo_blockload(block,pindex) == 0 )
@@ -1588,6 +1587,7 @@ int64_t komodo_coinsupply(int32_t height)
} }
} }
supply += pindex->newcoins; supply += pindex->newcoins;
printf("start ht.%d new %.8f -> supply %.8f\n",pindex->nHeight,dstr(pindex->newcoins),dstr(supply));
pindex = pindex->pprev; pindex = pindex->pprev;
} }
} }