From d08c6f0d8dea8d276aa96c5e7d97e43c72aabe94 Mon Sep 17 00:00:00 2001 From: jl777 Date: Fri, 19 Feb 2016 01:01:01 -0300 Subject: [PATCH] test --- iguana/swaps/iguana_BTCswap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iguana/swaps/iguana_BTCswap.c b/iguana/swaps/iguana_BTCswap.c index c1dfa4978..f851ac272 100755 --- a/iguana/swaps/iguana_BTCswap.c +++ b/iguana/swaps/iguana_BTCswap.c @@ -552,7 +552,7 @@ cJSON *BTC_waitdeckCfunc(struct supernet_info *myinfo,struct exchange_info *exch { *serdatap = 0, *serdatalenp = 0; struct bitcoin_swapinfo *swap = ap->info; strcmp(swap->expectedcmdstr,"BTCdeckC"); - if ( instantdex_feetxverify(myinfo,iguana_coinfind("BTC"),swap,ap,argjson) != 0 ) + if ( instantdex_feetxverify(myinfo,iguana_coinfind("BTCD"),swap,ap,argjson) != 0 ) return(cJSON_Parse("{\"error\":\"feetx didnt verify\"}")); return(newjson); } @@ -562,7 +562,7 @@ cJSON *BTC_waitprivCfunc(struct supernet_info *myinfo,struct exchange_info *exch struct bitcoin_swapinfo *swap = ap->info; strcmp(swap->expectedcmdstr,"BTCprivC"); instantdex_privkeyextract(myinfo,swap,*serdatap,*serdatalenp); - if ( instantdex_feetxverify(myinfo,iguana_coinfind("BTC"),swap,ap,argjson) != 0 ) + if ( instantdex_feetxverify(myinfo,iguana_coinfind("BTCD"),swap,ap,argjson) != 0 ) return(cJSON_Parse("{\"error\":\"feetx didnt verify\"}")); *serdatap = 0, *serdatalenp = 0; return(newjson);