URI: 
       ttypos in gui/qt/main_window.py - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 800ea1e3005e391ae152e51c0b5d7bc8a78157f9
   DIR parent 35ae2a0064b5548b5c337280a2763f3534ca569f
  HTML Author: SomberNight <somber.night@protonmail.com>
       Date:   Tue, 20 Mar 2018 00:54:29 +0100
       
       ttypos in gui/qt/main_window.py
       
       Diffstat:
         M gui/qt/main_window.py               |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py
       t@@ -2629,7 +2629,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
        
                msg = '\n'.join([
                    _('Time based: fee rate is based on average confirmation time estimates'),
       -            _('Mempool based: fee rate is targetting a depth in the memory pool')
       +            _('Mempool based: fee rate is targeting a depth in the memory pool')
                    ]
                )
                fee_type_label = HelpLabel(_('Fee estimation') + ':', msg)
       t@@ -2656,7 +2656,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
                use_rbf_cb.setChecked(self.config.get('use_rbf', True))
                use_rbf_cb.setToolTip(
                    _('If you check this box, your transactions will be marked as non-final,') + '\n' + \
       -            _('and you will have the possiblity, while they are unconfirmed, to replace them with transactions that pay higher fees.') + '\n' + \
       +            _('and you will have the possibility, while they are unconfirmed, to replace them with transactions that pay higher fees.') + '\n' + \
                    _('Note that some merchants do not accept non-final transactions until they are confirmed.'))
                def on_use_rbf(x):
                    self.config.set_key('use_rbf', x == Qt.Checked)