This commit is contained in:
Matthias Voppichler 2018-05-13 19:54:19 +02:00
parent 144be37a9a
commit 57fc9df5f3

View File

@ -92,7 +92,7 @@ class CryptoToFiatConverter(object):
def _load_cryptomap(self) -> None:
try:
coinlistings = self._coinmarketcap.listings()
self._cryptomap = dict(map(lambda coin: (coin["symbol"], str(coin["id"]),
self._cryptomap = dict(map(lambda coin: (coin["symbol"], str(coin["id"])),
coinlistings["data"]))
except ValueError:
logger.error("Could not load FIAT Cryptocurrency map")