Browse Source

Fabs

pass-iguana-arg
jl777 7 years ago
parent
commit
2a56ccb6fd
  1. 6
      iguana/exchanges/LP_privkey.c

6
iguana/exchanges/LP_privkey.c

@ -513,11 +513,11 @@ void verusblocks(struct iguana_info *coin,char *coinaddr)
printf("ht.%-5d lock.%-7d PoS cb.(%s) stake.(%s) %.8f %.8f\n",height,locked,addr0,stakingaddr,value,stakedval);
if ( height > 15000 )
{
if ( value == 64. )
if ( fabs(dstr(value) - 64.) < SMALLVAL )
num64++;
else if ( value == 32. )
else if ( fabs(dstr(value) - 32.) < SMALLVAL )
num32++;
else if ( value == 16. )
else if ( fabs(dstr(value) - 16.) < SMALLVAL )
num16++;
}
}

Loading…
Cancel
Save