From 4374b809faad1dad6386714a7cb2279f60b7094c Mon Sep 17 00:00:00 2001 From: SomberNight Date: Wed, 27 Mar 2019 19:01:38 +0100 Subject: [PATCH] fix-up prev --- electrum/exchange_rate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'])}