fix biscoint ticker path

This commit is contained in:
Gustavo 2020-07-17 15:30:48 -03:00
parent a073ea6050
commit edef0cd4b6

View file

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