timprove fee status message - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 0bca97dd2f8913f70c3762ae52b9469a9edbfba5 DIR parent 2b5117ab3dfa8213f303f80771ca19afe7249ca9 HTML Author: ThomasV <thomasv@electrum.org> Date: Mon, 5 Mar 2018 09:49:17 +0100 improve fee status message Diffstat: M lib/simple_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/lib/simple_config.py b/lib/simple_config.py t@@ -348,7 +348,7 @@ class SimpleConfig(PrintError): pos = self.get_depth_level() if mempool else self.get_fee_level() fee_rate = self.fee_per_kb() target, tooltip = self.get_fee_text(pos, dyn, mempool, fee_rate) - return target + ' [%s]'%tooltip + return tooltip + ' [%s]'%target if dyn else target + ' [Static]' def get_fee_text(self, pos, dyn, mempool, fee_rate): """Returns (text, tooltip) where