lnwallet: change channelDispute to channelClosed so errors are handled

This commit is contained in:
Keagan McClelland 2024-02-02 11:40:22 -08:00
parent 7d74165296
commit 4e6b1cda49

View file

@ -7595,7 +7595,7 @@ func (lc *LightningChannel) ForceClose() (*LocalForceCloseSummary, error) {
// Set the channel state to indicate that the channel is now in a
// contested state.
lc.status = channelDispute
lc.status = channelClosed
return summary, nil
}