jl777 7 years ago
parent
commit
320f0294c9
  1. 4
      iguana/exchanges/LP_utxo.c

4
iguana/exchanges/LP_utxo.c

@ -596,14 +596,14 @@ int32_t LP_numconfirms(char *symbol,char *coinaddr,bits256 txid,int32_t vout,int
numconfirms = jint(txobj,"confirmations"); numconfirms = jint(txobj,"confirmations");
free_json(txobj); free_json(txobj);
} }
if ( mempool != 0 && LP_mempoolscan(symbol,txid) >= 0 ) else if ( mempool != 0 && LP_mempoolscan(symbol,txid) >= 0 )
numconfirms = 0; numconfirms = 0;
} }
else else
{ {
if ( (ht= LP_txheight(coin,txid)) > 0 && ht <= coin->height ) if ( (ht= LP_txheight(coin,txid)) > 0 && ht <= coin->height )
numconfirms = (LP_getheight(coin) - ht + 1); numconfirms = (LP_getheight(coin) - ht + 1);
if ( mempool != 0 ) else if ( mempool != 0 )
{ {
if ( LP_waitmempool(symbol,coinaddr,txid,vout,30) >= 0 ) if ( LP_waitmempool(symbol,coinaddr,txid,vout,30) >= 0 )
numconfirms = 0; numconfirms = 0;

Loading…
Cancel
Save