Browse Source

Test

etomic
jl777 7 years ago
parent
commit
9511fd7ad1
  1. 1
      iguana/exchanges/LP_nativeDEX.c
  2. 6
      iguana/exchanges/LP_ordermatch.c

1
iguana/exchanges/LP_nativeDEX.c

@ -18,6 +18,7 @@
// LP_nativeDEX.c // LP_nativeDEX.c
// marketmaker // marketmaker
// //
// previously, it used to show amount, kmd equiv, perc
// swap started, pending, locked, finished, ... // swap started, pending, locked, finished, ...
// aliceid // aliceid
//there is still a pending one with `-1 wait for bobpayment bYoNxkfvwQ42Yufry8J5y8BYi6mQxokvW9 numconfs.1 MNZ c0ea4aa808a653222a15122d96692fecf734dbbacfb9a54cb4711306ea0c3cef`, but that tx is already spent including 6 confirmation //there is still a pending one with `-1 wait for bobpayment bYoNxkfvwQ42Yufry8J5y8BYi6mQxokvW9 numconfs.1 MNZ c0ea4aa808a653222a15122d96692fecf734dbbacfb9a54cb4711306ea0c3cef`, but that tx is already spent including 6 confirmation

6
iguana/exchanges/LP_ordermatch.c

@ -901,9 +901,9 @@ struct LP_utxoinfo *LP_buyutxo(double *ordermatchpricep,int64_t *bestsatoshisp,i
{ {
item = jitem(asks,i); item = jitem(asks,i);
price = jdouble(item,"price"); price = jdouble(item,"price");
if ( price/maxprice < .9 ) if ( price < maxprice && price > maxprice*0.8)
price *= 1.05; price = price * 0.9 + 0.1 * maxprice;
else price *= 1.01; else price *= 1.005;
pubkey = jbits256(item,"pubkey"); pubkey = jbits256(item,"pubkey");
if ( bits256_nonz(destpubkey) != 0 && bits256_cmp(destpubkey,pubkey) != 0 ) if ( bits256_nonz(destpubkey) != 0 && bits256_cmp(destpubkey,pubkey) != 0 )
continue; continue;

Loading…
Cancel
Save