From 7908f4b203a64b84ed00dfe04c98efc6cf0015d2 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Mon, 24 Feb 2020 13:02:11 +0100 Subject: [PATCH] follow-up previous commit --- electrum/lnchannel.py | 1 + 1 file changed, 1 insertion(+) diff --git a/electrum/lnchannel.py b/electrum/lnchannel.py index 597fb9410..8f2bbb3a8 100644 --- a/electrum/lnchannel.py +++ b/electrum/lnchannel.py @@ -97,6 +97,7 @@ state_transitions = [ (cs.CLOSING, cs.CLOSED), (cs.FORCE_CLOSING, cs.CLOSED), (cs.CLOSED, cs.REDEEMED), + (cs.OPENING, cs.REDEEMED), # channel never funded (dropped from mempool) (cs.PREOPENING, cs.REDEEMED), # channel never funded ] del cs # delete as name is ambiguous without context