Merge pull request #410 from thgh/patch-1

Update help text about tx fee
This commit is contained in:
ThomasV 2013-11-13 10:03:03 -08:00
commit 9484c2931d
1 changed files with 1 additions and 1 deletions

View File

@ -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)