Browse Source

Test

etomic
jl777 7 years ago
parent
commit
673b20adbd
  1. 2
      iguana/exchanges/LP_utxos.c

2
iguana/exchanges/LP_utxos.c

@ -382,7 +382,7 @@ int32_t LP_iseligible(uint64_t *valp,uint64_t *val2p,int32_t iambob,char *symbol
if ( (val2= LP_txvalue(destaddr2,symbol,txid2,vout2)) >= threshold )
{
printf("val %.8f and val2 %.8f vs %.8f\n",dstr(val),dstr(val2),dstr(satoshis));
if ( strcmp(destaddr,destaddr2) == 0 )
if ( strcmp(destaddr,destaddr2) == 0 && ((iambob == 0 && val2 <= val) || (iambob != 0 && val2 >= val)) )
{
*valp = val;
*val2p = val2;

Loading…
Cancel
Save