URI: 
       twallet.py: check_history depends on load_local_history and build_spent_outpoints - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit b88f0434c52a2696f5f58529cabb6044ab8f11f2
   DIR parent 86e2f3f561bf651cfcf270324d5c2b794e491dcf
  HTML Author: SomberNight <somber.night@protonmail.com>
       Date:   Wed, 16 May 2018 11:31:20 +0200
       
       wallet.py: check_history depends on load_local_history and build_spent_outpoints
       
       if it tries to call add_transaction
       
       Diffstat:
         M lib/wallet.py                       |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/lib/wallet.py b/lib/wallet.py
       t@@ -215,10 +215,10 @@ class Abstract_Wallet(PrintError):
                self.load_addresses()
                self.test_addresses_sanity()
                self.load_transactions()
       -        self.check_history()
       -        self.load_unverified_transactions()
                self.load_local_history()
                self.build_spent_outpoints()
       +        self.check_history()
       +        self.load_unverified_transactions()
                self.remove_local_transactions_we_dont_have()
        
                # there is a difference between wallet.up_to_date and interface.is_up_to_date()