Skip to content

Commit

Permalink
Temporarily disable the USDT currency
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Sep 21, 2019
1 parent dd355f8 commit 9c68573
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
13 changes: 7 additions & 6 deletions app/marketmaker/supported-currencies.js
Expand Up @@ -1726,12 +1726,13 @@ const supportedCurrencies = [
contractAddress: '0x92e52a1A235d9A103D970901066CE910AAceFD37',
rpcport: 80,
},
{
coin: 'USDT',
name: 'Tether',
contractAddress: '0xdAC17F958D2ee523a2206206994597C13D831ec7',
rpcport: 80,
},
// Temporarily disabled as it's not working with mm2
// {
// coin: 'USDT',
// name: 'Tether',
// contractAddress: '0xdAC17F958D2ee523a2206206994597C13D831ec7',
// rpcport: 80,
// },
{
coin: 'VRSC',
name: 'VerusCoin',
Expand Down
6 changes: 3 additions & 3 deletions app/renderer/api.js
Expand Up @@ -89,9 +89,9 @@ export default class Api {
async enableCurrency(symbol) {
ow(symbol, 'symbol', symbolPredicate);

// TODO: Remove this when https://github.com/KomodoPlatform/atomicDEX-API/issues/492 is fixed
if (symbol === 'OOT') {
console.error('Ignoring OOT currency as it\'s not working');
// TODO: Remove `OOT` when https://github.com/KomodoPlatform/atomicDEX-API/issues/492 is fixed
if (symbol === 'OOT' || symbol === 'USDT') {
console.error(`Ignoring ${symbol} currency as it's not working with mm2`);
return;
}

Expand Down

0 comments on commit 9c68573

Please sign in to comment.