Browse Source

fix biscoint ticker path

bip39-recovery
Gustavo 5 years ago
parent
commit
edef0cd4b6
  1. 2
      electrum/exchange_rate.py

2
electrum/exchange_rate.py

@ -400,7 +400,7 @@ class Biscoint(ExchangeBase):
async def get_rates(self,ccy):
json = await self.get_json('api.biscoint.io', '/v1/ticker?base=BTC&quote=BRL')
return {'BRL': Decimal(json['data']['last']['last'])}
return {'BRL': Decimal(json['data']['last'])}
def dictinvert(d):

Loading…
Cancel
Save