URI: 
       timprove fee help message - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 2b751f8026bb547ac9d4d8b98efc45f4731ff546
   DIR parent 39274ea10e5e04bd0f420a92093d44af9fc50ee3
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Thu, 12 Jun 2014 09:32:05 +0200
       
       improve fee help message
       
       Diffstat:
         M gui/qt/main_window.py               |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py
       t@@ -2256,8 +2256,8 @@ class ElectrumWindow(QMainWindow):
                fee_e = BTCAmountEdit(self.get_decimal_point)
                fee_e.setAmount(self.wallet.fee)
                grid.addWidget(fee_e, 2, 1)
       -        msg = _('Fee per kilobyte of transaction.') + ' ' \
       -            + _('Recommended value') + ': ' + self.format_amount(20000)
       +        msg = _('Fee per kilobyte of transaction.') + '\n' \
       +            + _('Recommended value') + ': ' + self.format_amount(10000) + ' ' + self.base_unit()
                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)