tchange help text - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 077bf77d1fd67f5c9c7510feac3bcebefbdeb3db DIR parent 4f4d7869a194e3a0d4b58e1d7e625dac9c76d9a7 HTML Author: thomasv <thomasv@gitorious> Date: Tue, 12 Jun 2012 13:23:03 +0200 change help text Diffstat: M lib/gui_qt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/lib/gui_qt.py b/lib/gui_qt.py t@@ -1178,7 +1178,7 @@ class ElectrumWindow(QMainWindow): fee_e.setText("%s"% str( Decimal( self.wallet.fee)/100000000 ) ) grid.addWidget(QLabel(_('Transaction fee')), 2, 0) grid.addWidget(fee_e, 2, 1) - grid.addWidget(HelpButton('Fee per transaction input. Transactions involving multiple inputs tend to have a higher fee. Recommended value: 0.0005'), 2, 2) + grid.addWidget(HelpButton('Fee per transaction input. Transactions involving multiple inputs tend to require a higher fee. Recommended value: 0.0005'), 2, 2) fee_e.textChanged.connect(lambda: numbify(fee_e,False)) nz_e = QLineEdit()