diff --git a/iguana/exchanges/LP_utxos.c b/iguana/exchanges/LP_utxos.c index ccb18e6b1..76f302038 100644 --- a/iguana/exchanges/LP_utxos.c +++ b/iguana/exchanges/LP_utxos.c @@ -909,7 +909,7 @@ void LP_privkey_updates(void *ctx,int32_t pubsock,char *passphrase,int32_t inito privkey = LP_privkeycalc(ctx,pubkey33,&pubkey,coin,passphrase,""); if ( coin->inactive == 0 && initonly == 0 ) { - if ( LP_privkey_init(pubsock,coin,privkey,pubkey) > 0 ) + if ( LP_privkey_init(pubsock,coin,privkey,pubkey) > 0 || (rand() % 10) == 0 ) LP_postutxos(coin->symbol); } }