electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit eb4829f9c0c2f89c564f5d264c8ecadbda0af49a
parent 5da58ac3b9fe6a5043bd6b1577365b4ef58ecc5e
Author: ThomasV <thomasv@gitorious>
Date:   Thu, 28 Aug 2014 10:35:22 +0200

message should be tx fee per kb

Diffstat:
Mgui/qt/main_window.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py @@ -2556,7 +2556,7 @@ class ElectrumWindow(QMainWindow): nz.valueChanged.connect(on_nz) widgets.append((nz_label, nz, nz_help)) - fee_label = QLabel(_('Transaction fee') + ':') + fee_label = QLabel(_('Transaction fee per kb') + ':') fee_help = HelpButton(_('Fee per kilobyte of transaction.') + '\n' + _('Recommended value') + ': ' + self.format_amount(10000) + ' ' + self.base_unit()) fee_e = BTCAmountEdit(self.get_decimal_point) fee_e.setAmount(self.wallet.fee)