From ef1e1784b8827cfc371e58645e757f468f03552a Mon Sep 17 00:00:00 2001 From: thisconnect Date: Tue, 4 Mar 2025 13:48:19 +0100 Subject: [PATCH] backend: remove usdt from btcdirect BTC Direct has ceased supporting Tether (USDT) - https://support.btcdirect.eu/hc/en-gb/articles/24592747089298-BTC-Direct-has-ceased-supporting-Tether-USDT --- backend/exchanges/btcdirect.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/exchanges/btcdirect.go b/backend/exchanges/btcdirect.go index 89ccd7165d..72872f6505 100644 --- a/backend/exchanges/btcdirect.go +++ b/backend/exchanges/btcdirect.go @@ -61,7 +61,7 @@ func isRegionSupportedBtcDirect(region string) bool { func IsBtcDirectSupported(coinCode coin.Code) bool { supportedCoins := []coin.Code{ coin.CodeBTC, coin.CodeTBTC, coin.CodeLTC, coin.CodeTLTC, coin.CodeETH, coin.CodeSEPETH, - "eth-erc20-usdt", "eth-erc20-usdc", "eth-erc20-link"} + "eth-erc20-usdc", "eth-erc20-link"} coinSupported := slices.Contains(supportedCoins, coinCode)