URI: 
       twallet.clear_history: clear txns and verified txns too - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 63e402c2d7c063d5f078968c338534337fe89545
   DIR parent 945ba8decf2fb1c2d117edcb9252af8717788eba
  HTML Author: SomberNight <somber.night@protonmail.com>
       Date:   Fri, 16 Feb 2018 13:37:38 +0100
       
       wallet.clear_history: clear txns and verified txns too
       
       Diffstat:
         M lib/wallet.py                       |       2 ++
       
       1 file changed, 2 insertions(+), 0 deletions(-)
       ---
   DIR diff --git a/lib/wallet.py b/lib/wallet.py
       t@@ -271,6 +271,8 @@ class Abstract_Wallet(PrintError):
                        self.pruned_txo = {}
                        self.spent_outpoints = {}
                        self.history = {}
       +                self.verified_tx = {}
       +                self.transactions = {}
                        self.save_transactions()
        
            @profiler