From 65b5205448c0066026ac9cded7e0fb0f0c52bb98 Mon Sep 17 00:00:00 2001 From: jl777 Date: Fri, 7 Jul 2017 22:42:23 +0300 Subject: [PATCH] Test --- iguana/exchanges/LP_utxos.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iguana/exchanges/LP_utxos.c b/iguana/exchanges/LP_utxos.c index 8717b29ee..8aeae6452 100644 --- a/iguana/exchanges/LP_utxos.c +++ b/iguana/exchanges/LP_utxos.c @@ -257,13 +257,13 @@ cJSON *LP_inventoryjson(cJSON *item,struct LP_utxoinfo *utxo) jaddnum(item,"pending",utxo->T.swappending); if ( utxo->iambob != 0 ) { - jaddbits256(item,"srchash",LP_mypub25519); + jaddbits256(item,"srchash",utxo->pubkey);//LP_mypub25519); if ( bits256_nonz(utxo->S.otherpubkey) != 0 ) jaddbits256(item,"desthash",utxo->S.otherpubkey); } else { - jaddbits256(item,"desthash",LP_mypub25519); + jaddbits256(item,"desthash",utxo->pubkey);//LP_mypub25519); if ( bits256_nonz(utxo->S.otherpubkey) != 0 ) jaddbits256(item,"srchash",utxo->S.otherpubkey); }