URI: 
       tMerge pull request #3854 from SomberNight/local_txn_spv - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit fca20e33f5a172c86b1d09dcac009d7aa0f27fbe
   DIR parent d466ef4b73606ab8f57f16b0e0f91da015026da7
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Tue,  6 Feb 2018 05:22:12 +0100
       
       Merge pull request #3854 from SomberNight/local_txn_spv
       
       some local txns are not getting SPV verified
       Diffstat:
         M lib/wallet.py                       |       1 +
       
       1 file changed, 1 insertion(+), 0 deletions(-)
       ---
   DIR diff --git a/lib/wallet.py b/lib/wallet.py
       t@@ -779,6 +779,7 @@ class Abstract_Wallet(PrintError):
                            # make tx local
                            self.unverified_tx.pop(tx_hash, None)
                            self.verified_tx.pop(tx_hash, None)
       +                    self.verifier.merkle_roots.pop(tx_hash, None)
                    self.history[addr] = hist
        
                for tx_hash, tx_height in hist: