Merge pull request #2704 from lbryio/disable-cryptonator
disable cryptonator feed
This commit is contained in:
commit
79557bb878
2 changed files with 3 additions and 3 deletions
|
@ -166,8 +166,8 @@ FEEDS: Iterable[Type[MarketFeed]] = (
|
|||
LBRYFeed,
|
||||
LBRYBTCFeed,
|
||||
BittrexFeed,
|
||||
CryptonatorFeed,
|
||||
CryptonatorBTCFeed,
|
||||
# CryptonatorFeed,
|
||||
# CryptonatorBTCFeed,
|
||||
)
|
||||
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ class TestExchangeRateManager(AsyncioTestCase):
|
|||
|
||||
async def test_exchange_rate_manager(self):
|
||||
# TODO: re-enable cryptonator.com
|
||||
manager = ExchangeRateManager(FEEDS[:-2])
|
||||
manager = ExchangeRateManager(FEEDS)
|
||||
manager.start()
|
||||
self.addCleanup(manager.stop)
|
||||
for feed in manager.market_feeds:
|
||||
|
|
Loading…
Reference in a new issue