From 7d79ecce73fd213f65ba0d61e7583a152ee87a4c Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sat, 28 Mar 2015 19:11:49 +0100 Subject: [PATCH] do not display default label --- gui/qt/main_window.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index f02eb0541..90646b0d6 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -713,6 +713,8 @@ class ElectrumWindow(QMainWindow): if tx_hash: label, is_default_label = self.wallet.get_label(tx_hash) + if is_default_label: + label = '' else: label = _('Pruned transaction outputs') is_default_label = False