forked from LBRYCommunity/lbry-sdk
disable Hotbit and UPBit exchange rate feeds
This commit is contained in:
parent
ec751e5add
commit
10df0c1fba
2 changed files with 6 additions and 5 deletions
|
@ -196,9 +196,9 @@ FEEDS: Iterable[Type[MarketFeed]] = (
|
||||||
BittrexUSDFeed,
|
BittrexUSDFeed,
|
||||||
CoinExBTCFeed,
|
CoinExBTCFeed,
|
||||||
CoinExUSDFeed,
|
CoinExUSDFeed,
|
||||||
HotbitBTCFeed,
|
# HotbitBTCFeed,
|
||||||
HotbitUSDFeed,
|
# HotbitUSDFeed,
|
||||||
UPbitBTCFeed,
|
# UPbitBTCFeed,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
import asyncio
|
import asyncio
|
||||||
import logging
|
|
||||||
from decimal import Decimal
|
from decimal import Decimal
|
||||||
from lbry.testcase import AsyncioTestCase
|
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):
|
class TestExchangeRateManager(AsyncioTestCase):
|
||||||
|
|
Loading…
Add table
Reference in a new issue