URI: 
       tfixes for text interface - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit c61e5db6a951dd26fda1913ad09622a67e03ecbb
   DIR parent f9960a5fe288fc75388417bf0104c00ec33212f5
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Sat,  8 Feb 2020 12:33:07 +0100
       
       fixes for text interface
       
       Diffstat:
         M electrum/gui/text.py                |       4 +++-
       
       1 file changed, 3 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/electrum/gui/text.py b/electrum/gui/text.py
       t@@ -130,7 +130,7 @@ class ElectrumGui:
                    label = self.wallet.get_label(hist_item.txid)
                    if len(label) > 40:
                        label = label[0:37] + '...'
       -            self.history.append(format_str % (time_str, label, format_satoshis(hist_item.value, whitespaces=True),
       +            self.history.append(format_str % (time_str, label, format_satoshis(hist_item.delta, whitespaces=True),
                                                      format_satoshis(hist_item.balance, whitespaces=True)))
        
        
       t@@ -331,6 +331,8 @@ class ElectrumGui:
                    curses.echo()
                    curses.endwin()
        
       +    def stop(self):
       +        pass
        
            def do_clear(self):
                self.str_amount = ''