diff --git a/electrum/exchange_rate.py b/electrum/exchange_rate.py index cf7840ec4..6d710e0c9 100644 --- a/electrum/exchange_rate.py +++ b/electrum/exchange_rate.py @@ -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'])}