URI: 
       tlnwatcher: fix incorrect tuple unpacking in do_breach_remedy - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 38396e8ed4e2b9aa88581d91511c5b4f378e5c7a
   DIR parent 38d2d4c32165ee9014bd32e7e26f34b6bf05f7e5
  HTML Author: Janus <ysangkok@gmail.com>
       Date:   Thu, 24 Jan 2019 17:21:19 +0100
       
       lnwatcher: fix incorrect tuple unpacking in do_breach_remedy
       
       Diffstat:
         M electrum/lnwatcher.py               |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/electrum/lnwatcher.py b/electrum/lnwatcher.py
       t@@ -179,7 +179,7 @@ class LNWatcher(AddressSynchronizer):
                    prev_txid, prev_n = prevout.split(':')
                    with self.lock:
                        sweep_txns = self.sweepstore[funding_outpoint][prev_txid]
       -            for prev_txid, tx in sweep_txns:
       +            for tx in sweep_txns:
                        if not await self.broadcast_or_log(funding_outpoint, tx):
                            self.print_error(tx.name, f'could not publish tx: {str(tx)}, prev_txid: {prev_txid}')