URI: 
       tMerge pull request #410 from thgh/patch-1 - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 9484c2931d89b999f5d27bf2bad0236e5afe9c50
   DIR parent 75ab58396292c7f77bb742e78a4ca6b634b586b0
  HTML Author: ThomasV <thomasv1@gmx.de>
       Date:   Wed, 13 Nov 2013 10:03:03 -0800
       
       Merge pull request #410 from thgh/patch-1
       
       Update help text about tx fee
       Diffstat:
         M gui/qt/main_window.py               |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py
       t@@ -1998,7 +1998,7 @@ class ElectrumWindow(QMainWindow):
                fee_e.setText(self.format_amount(self.wallet.fee).strip())
                grid.addWidget(fee_e, 2, 1)
                msg = _('Fee per kilobyte of transaction.') + ' ' \
       -            + _('Recommended value') + ': ' + self.format_amount(50000)
       +            + _('Recommended value') + ': ' + self.format_amount(20000)
                grid.addWidget(HelpButton(msg), 2, 2)
                if not self.config.is_modifiable('fee_per_kb'):
                    for w in [fee_e, fee_label]: w.setEnabled(False)