mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-28 06:44:40 +03:00
Fix exclude ARS from blockchain.info
This commit is contained in:
parent
1ecd1ec7dc
commit
0ef59ad8e8
@ -92,6 +92,10 @@ def get_exchange_rates(currencies):
|
||||
blockchain_prices = session.get(api_url).json()
|
||||
blockchain_rates = []
|
||||
for currency in currencies:
|
||||
# Do not include ARS from Blockchain.info . This pricing is estimated wrongly.
|
||||
if currency == "ARS":
|
||||
blockchain_rates.append(np.nan)
|
||||
else:
|
||||
try: # If a currency is missing place a None
|
||||
blockchain_rates.append(
|
||||
float(blockchain_prices[currency]["last"])
|
||||
|
Loading…
Reference in New Issue
Block a user