jl777
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
iguana/exchanges/LP_instantdex.c
|
|
@ -474,7 +474,7 @@ int64_t LP_dynamictrust(int64_t credits,bits256 pubkey,int64_t kmdvalue) |
|
|
|
credits = ap->instantdex_credits; |
|
|
|
if ( credits != 0 && (swaps_kmdvalue+kmdvalue) > credits ) |
|
|
|
printf("REJECT: %s instantdex_credits %.8f vs (%.8f + current %.8f)\n",coinaddr,dstr(credits),dstr(swaps_kmdvalue),dstr(kmdvalue)); |
|
|
|
if ( credits != 0 ) |
|
|
|
if ( 0 && credits != 0 ) |
|
|
|
printf("%s %s othercredits %.8f debits %.8f + %.8f -> %.8f\n",coin->symbol,coinaddr,dstr(credits),dstr(swaps_kmdvalue),dstr(kmdvalue),dstr(credits - (swaps_kmdvalue+kmdvalue))); |
|
|
|
return(credits - (swaps_kmdvalue+kmdvalue)); |
|
|
|
} |
|
|
|