disable Hotbit and UPBit exchange rate feeds

This commit is contained in:
Lex Berezhny 2022-08-11 09:45:23 -04:00
parent ec751e5add
commit 10df0c1fba
2 changed files with 6 additions and 5 deletions

View file

@ -196,9 +196,9 @@ FEEDS: Iterable[Type[MarketFeed]] = (
BittrexUSDFeed,
CoinExBTCFeed,
CoinExUSDFeed,
HotbitBTCFeed,
HotbitUSDFeed,
UPbitBTCFeed,
# HotbitBTCFeed,
# HotbitUSDFeed,
# UPbitBTCFeed,
)

View file

@ -1,8 +1,9 @@
import asyncio
import logging
from decimal import Decimal
from lbry.testcase import AsyncioTestCase
from lbry.extras.daemon.exchange_rate_manager import ExchangeRate, ExchangeRateManager, FEEDS, MarketFeed
from lbry.extras.daemon.exchange_rate_manager import (
ExchangeRate, ExchangeRateManager, FEEDS, MarketFeed
)
class TestExchangeRateManager(AsyncioTestCase):