Browse Source

Test

etomic
jl777 7 years ago
parent
commit
5411d3a6ee
  1. 4
      iguana/exchanges/LP_rpc.c

4
iguana/exchanges/LP_rpc.c

@ -281,11 +281,11 @@ cJSON *LP_gettxout(char *symbol,bits256 txid,int32_t vout)
if ( (hexobj= bitcoin_json(coin,"blockchain.transaction.get",buf)) != 0 )
{
hexstr = jprint(hexobj,1);
if ( (len= is_hexstr(hexstr,0)) > 2 )
if ( (len= is_hexstr(hexstr+1,0)) > 2 )
{
len >>= 1;
serialized = malloc(len);
decode_hex(serialized,len,hexstr);
decode_hex(serialized,len,hexstr+1);
LP_swap_coinaddr(coin,coinaddr,&value,serialized,len,0);
printf("HEX.(%s) %s %.8f\n",hexstr,coinaddr,dstr(value));
if ( (listjson= electrum_address_listunspent(coin->symbol,0,0,coinaddr)) != 0 )

Loading…
Cancel
Save