Merge pull request #2704 from lbryio/disable-cryptonator

disable cryptonator feed
This commit is contained in:
Jack Robison 2020-01-03 16:18:05 -05:00 committed by GitHub
commit 79557bb878
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -166,8 +166,8 @@ FEEDS: Iterable[Type[MarketFeed]] = (
LBRYFeed,
LBRYBTCFeed,
BittrexFeed,
CryptonatorFeed,
CryptonatorBTCFeed,
# CryptonatorFeed,
# CryptonatorBTCFeed,
)

View file

@ -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: