I tried to shut certainly one of my channels at present by working:
lightning-cli -k shut id=******* unilateraltimeout=10800 feerange=[1000,4000]
I received the next output:
# Sending closing price supply 424sat, with vary 151sat-600sat
# Acquired closing price supply 424sat, with vary 424sat-424sat
{
"tx": "*******************************************************************************************************************************************************************************",
"txid": "***************************************************",
"sort": "mutual"
}
After a few hours the transaction remains to be unconfirmed onchain.
I attempted to shut the identical channel once more with the next price: lightning-cli -k shut id=******* unilateraltimeout=10800 feerange=[3000,5000]
however I received this error:
{
"code": -32602,
"message": "id: Channel in state CLOSINGD_COMPLETE: invalid token (see logs for particulars)"
}
Beneath are the channels state modifications and standing as present by the output of listchannels
:
"state_changes": [
{
"timestamp": "2024-08-14T06:27:46.645Z",
"old_state": "CHANNELD_AWAITING_LOCKIN",
"new_state": "CHANNELD_NORMAL",
"cause": "user",
"message": "Lockin complete"
},
{
"timestamp": "2024-12-15T08:55:13.190Z",
"old_state": "CHANNELD_NORMAL",
"new_state": "CHANNELD_SHUTTING_DOWN",
"cause": "user",
"message": "User or plugin invoked close command"
},
{
"timestamp": "2024-12-15T08:55:13.552Z",
"old_state": "CHANNELD_SHUTTING_DOWN",
"new_state": "CLOSINGD_SIGEXCHANGE",
"cause": "user",
"message": "Start closingd"
},
{
"timestamp": "2024-12-15T08:55:13.952Z",
"old_state": "CLOSINGD_SIGEXCHANGE",
"new_state": "CLOSINGD_COMPLETE",
"cause": "user",
"message": "Closing complete"
}
],
"standing": [
"CHANNELD_NORMAL:Reconnected, and reestablished.",
"CLOSINGD_SIGEXCHANGE:We agreed on a closing fee of 424 satoshi for tx:***********************************************************"
],
What may I do to resolve this problem, what are my choices?