ThomasV 8 years ago
parent
commit
0a1542e249
  1. 3
      lib/wallet.py

3
lib/wallet.py

@ -1720,7 +1720,8 @@ class Abstract_Wallet(PrintError):
if fiat_value is not None: if fiat_value is not None:
return fiat_value return fiat_value
else: else:
return self.price_at_timestamp(txid, price_func) * txin_value/Decimal(COIN) p = self.price_at_timestamp(txid, price_func)
return None if p is None else p * txin_value/Decimal(COIN)
else: else:
# could be some coinjoin transaction.. # could be some coinjoin transaction..
return None return None

Loading…
Cancel
Save