tlnchannel: fix error message - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 5d26f51ad09ddc4dd8eb3d48d25bf2e76de17e4d DIR parent a40207cbbbee56c54875ebe3a27780878cbb9def HTML Author: ThomasV <thomasv@electrum.org> Date: Mon, 11 Feb 2019 15:58:57 +0100 lnchannel: fix error message Diffstat: M electrum/lnchannel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- DIR diff --git a/electrum/lnchannel.py b/electrum/lnchannel.py t@@ -184,7 +184,7 @@ class Channel(PrintError): def set_local_commitment(self, ctx): ctn = extract_ctn_from_tx_and_chan(ctx, self) - assert self.signature_fits(ctx), (self.log[LOCAL]) + assert self.signature_fits(ctx), (self.hm.log[LOCAL]) self.local_commitment = ctx if self.sweep_address is not None: self.local_sweeptxs = create_sweeptxs_for_our_latest_ctx(self, self.local_commitment, self.sweep_address)