This commit is contained in:
jl777
2016-11-26 16:05:55 -03:00
parent fa81b5ae2a
commit c5f534f444

View File

@@ -272,20 +272,23 @@ uint64_t komodo_paxtotal()
if ( pax->type == 'X' || pax->type == 'A' || pax->type == 'D' || pax->type == 'I' ) if ( pax->type == 'X' || pax->type == 'A' || pax->type == 'D' || pax->type == 'I' )
str = pax->symbol; str = pax->symbol;
else str = pax->source; else str = pax->source;
if ( pax->didstats == 0 && pax->fiatoshis != 0 ) if ( komodo_baseid(str) >= 0 && pax->didstats == 0 && pax->fiatoshis != 0 )
{ {
if ( pax->type == 'I' ) if ( (basesp= komodo_stateptrget(str)) != 0 )
{ {
basesp->issued += pax->fiatoshis; if ( pax->type == 'I' )
pax->didstats = 1; {
} basesp->issued += pax->fiatoshis;
else if ( pax->type == 'X' ) pax->didstats = 1;
{ }
basesp->redeemed += pax->fiatoshis; else if ( pax->type == 'X' )
pax->didstats = 1; {
basesp->redeemed += pax->fiatoshis;
pax->didstats = 1;
}
} }
} }
printf(" didstats.0 type.%c (%s) k.%d %.8f h.%d %.8f\n",pax->type,str,pax->height,dstr(pax->komodoshis),pax->otherheight,dstr(pax->fiatoshis)); printf(" stats.%d type.%c (%s) k.%d %.8f h.%d %.8f\n",pax->didstats,pax->type,str,pax->height,dstr(pax->komodoshis),pax->otherheight,dstr(pax->fiatoshis));
} }
} }
} }