Browse Source

Test

etomic
jl777 8 years ago
parent
commit
51cd4518e8
  1. 5
      iguana/exchanges/LP_utxos.c

5
iguana/exchanges/LP_utxos.c

@ -553,13 +553,16 @@ struct LP_utxoinfo *LP_utxoadd(int32_t iambob,int32_t mypubsock,char *symbol,bit
utxo = 0; utxo = 0;
} }
} }
if ( utxo != 0 )
{
if ( utxo->T.sessionid == 0 ) if ( utxo->T.sessionid == 0 )
utxo->T.sessionid = sessionid; utxo->T.sessionid = sessionid;
//else if ( profitmargin > SMALLVAL ) //else if ( profitmargin > SMALLVAL )
// utxo->S.profitmargin = profitmargin; // utxo->S.profitmargin = profitmargin;
if ( utxo != 0 ) utxo->T.lasttime = (uint32_t)time(NULL);
return(utxo); return(utxo);
} }
}
utxo = calloc(1,sizeof(*utxo)); utxo = calloc(1,sizeof(*utxo));
//utxo->S.profitmargin = profitmargin; //utxo->S.profitmargin = profitmargin;
utxo->pubkey = pubkey; utxo->pubkey = pubkey;

Loading…
Cancel
Save