URI: 
       tfix #2384 - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit b262e5bf3be29d8a9c9289faeb1e2d7f201e434a
   DIR parent d3918ef6110151f435a58b92ac102691d81eb017
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Wed, 10 May 2017 12:32:28 +0200
       
       fix #2384
       
       Diffstat:
         M gui/text.py                         |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/gui/text.py b/gui/text.py
       t@@ -385,7 +385,7 @@ class ElectrumGui:
                        self.network.set_parameters(host, port, protocol, proxy, auto_connect)
        
            def settings_dialog(self):
       -        fee = str(Decimal(self.wallet.fee_per_kb(self.config)) / COIN)
       +        fee = str(Decimal(self.config.fee_per_kb()) / COIN)
                out = self.run_dialog('Settings', [
                    {'label':'Default fee', 'type':'satoshis', 'value': fee }
                    ], buttons = 1)