Changed ui to show zat/byte instead of sat/byte

This commit is contained in:
Chris Sulmone 2018-01-22 22:50:10 -06:00
parent da502fa533
commit a35fcc3854
1 changed files with 1 additions and 1 deletions

View File

@ -2599,7 +2599,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
self.fee_unit = self.config.get('fee_unit', 0)
fee_unit_label = HelpLabel(_('Fee Unit') + ':', '')
fee_unit_combo = QComboBox()
fee_unit_combo.addItems([_('sat/byte'), _('mZCL/kB')])
fee_unit_combo.addItems([_('zat/byte'), _('mZCL/kB')])
fee_unit_combo.setCurrentIndex(self.fee_unit)
def on_fee_unit(x):
self.fee_unit = x