Browse Source

fix get_label in plot.py

283
ThomasV 9 years ago
parent
commit
59343ec6ec
  1. 2
      plugins/plot/qt.py

2
plugins/plot/qt.py

@ -64,7 +64,7 @@ class Plugin(BasePlugin):
value_val.append(1000.*value/COIN)
if tx_hash:
label, is_default_label = wallet.get_label(tx_hash)
label = wallet.get_label(tx_hash)
label = label.encode('utf-8')
else:
label = ""

Loading…
Cancel
Save