return float even if fiat/crypto are identical
This commit is contained in:
Matthias 2019-09-09 20:00:13 +02:00
parent 9aa7db103d
commit 94d2790ab5
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ class CryptoToFiatConverter(object):
:return: float, value in fiat of the crypto-currency amount
"""
if crypto_symbol == fiat_symbol:
return crypto_amount
return float(crypto_amount)
price = self.get_price(crypto_symbol=crypto_symbol, fiat_symbol=fiat_symbol)
return float(crypto_amount) * float(price)