URI: 
       tfix error message - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit cf3e050b7e58d46fda20959125f081f3264a3f28
   DIR parent 82740676195d2596e182457c6ed4b0e4aaa3289b
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Mon, 17 Dec 2018 13:26:57 +0100
       
       fix error message
       
       Diffstat:
         M electrum/lnworker.py                |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/electrum/lnworker.py b/electrum/lnworker.py
       t@@ -347,7 +347,7 @@ class LNWorker(PrintError):
                            broadcast = False
                    if broadcast:
                        if not await self.network.lnwatcher.broadcast_or_log(funding_outpoint, e_tx):
       -                    self.print_error(e_tx.name, f'could not publish encumbered tx: {str(sweep_tx)}, prev_txid: {prev_txid}')
       +                    self.print_error(e_tx.name, f'could not publish encumbered tx: {str(e_tx)}, prevout: {prevout}')
        
        
            @log_exceptions