mirror of
https://github.com/RoboSats/robosats.git
synced 2025-01-31 02:21:35 +00: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_prices = session.get(api_url).json()
|
||||||
blockchain_rates = []
|
blockchain_rates = []
|
||||||
for currency in currencies:
|
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
|
try: # If a currency is missing place a None
|
||||||
blockchain_rates.append(
|
blockchain_rates.append(
|
||||||
float(blockchain_prices[currency]["last"])
|
float(blockchain_prices[currency]["last"])
|
||||||
|
Loading…
Reference in New Issue
Block a user