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