Update help text about tx fee

Updating the recommended value to the default value. (0.0002)
This commit is contained in:
thgh 2013-11-13 18:24:59 +01:00
parent 75ab583962
commit 7977fa9ff2
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)