commit a4a2eb9b5c6c67e2873bd3eb165f237b4f929990
parent cf44e65ba8fc2e9be025d1d051487586af2c5721
Author: Neil Booth <kyuupichan@gmail.com>
Date: Sat, 26 Sep 2015 17:19:14 +0900
Handle None satoshis properly
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/plugins/exchange_rate.py b/plugins/exchange_rate.py
@@ -416,6 +416,8 @@ class Plugin(BasePlugin, ThreadJob):
return True
def value_str(self, satoshis, rate):
+ if satoshis is None: # Can happen with incomplete history
+ return _("Unknown")
if rate:
value = Decimal(satoshis) / COIN * Decimal(rate)
return "%s" % (self.ccy_amount_str(value, True))