fix-up prev

This commit is contained in:
SomberNight 2019-03-27 19:01:38 +01:00
parent a9c13d6641
commit 4374b809fa
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9

View file

@ -241,7 +241,7 @@ class BlockchainInfo(ExchangeBase):
class Bylls(ExchangeBase):
async def get_rates(self, ccy):
json = await self.get_json('bylls.com', 'api/price?from_currency=BTC&to_currency=CAD')
json = await self.get_json('bylls.com', '/api/price?from_currency=BTC&to_currency=CAD')
return {'CAD': Decimal(json['public_price']['to_price'])}