From 3c6808468efbc0f3c5369e28075f3eabc8a90759 Mon Sep 17 00:00:00 2001 From: Michael Wozniak Date: Thu, 7 Nov 2013 20:43:16 -0600 Subject: [PATCH] add F and P to address types in recv tab for Frozen and Prioritized addresses --- gui/gtk.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gui/gtk.py b/gui/gtk.py index fb0bb5c21..e7a3a0f53 100644 --- a/gui/gtk.py +++ b/gui/gtk.py @@ -1115,6 +1115,8 @@ class ElectrumWindow: Type = "R" if self.wallet.is_change(address): Type = "C" if address in self.wallet.imported_keys.keys(): Type = "I" + if address in self.wallet.frozen_addresses: Type = Type + "F" + if address in self.wallet.prioritized_addresses: Type = Type + "P" label = self.wallet.labels.get(address) h = self.wallet.history.get(address,[]) n = len(h)