Hello,
I initiated the opening of my first channel on March 7th, but I decided to switch to a permanent computer for my Lightning Network node. So, on March 10th, I requested the cancellation through Thunderhub with a fee of 6 sats. Note: I’m running Umbrel on Ubuntu Server.
I installed it on the new computer, but not all backups are available; some are showing errors when loading. The status remains as “closing.”
“total_limbo_balance”: “0”,
“pending_open_channels”: [
],
“pending_closing_channels”: [
],
“pending_force_closing_channels”: [
],
“waiting_close_channels”: [
{
“channel”: {
“remote_node_pub”: “03864ef025fde8fb587d989186ce6a4a186895ee44a926bfc370e2c366597a3f8f”,
“channel_point”: “30b66b20dff1cde78ee94b43c04cc6b016096b27aac46816709d33ef44f3adc1:1”,
“capacity”: “1000000”,
“local_balance”: “0”,
“remote_balance”: “0”,
“local_chan_reserve_sat”: “0”,
“remote_chan_reserve_sat”: “0”,
“initiator”: “INITIATOR_LOCAL”,
“commitment_type”: “ANCHORS”,
“num_forwarding_packages”: “0”,
“chan_status_flags”: “ChanStatusRestored”
},
“limbo_balance”: “0”,
“commitments”: {
“local_txid”: “”,
“remote_txid”: “”,
“remote_pending_txid”: “”,
“local_commit_fee_sat”: “0”,
“remote_commit_fee_sat”: “0”,
“remote_pending_commit_fee_sat”: “0”
},
“closing_txid”: “”
}
]
}
I’m trying to force the closure, but I’m not succeeding!
nshell@834bc7966a66:~$ lncli closechannel --force 30b66b20dff1cde78ee94b43c04cc6b016096b27aac46816709d33ef44f3adc1 1
[lncli] rpc error: code = Unknown desc = cannot close channel with state: ChanStatusRestored
lnshell@834bc7966a66:~$ lncli closechannel --force 30b66b20dff1cde78ee94b43c04cc6b016096b27aac46816709d33ef44f3adc1-1
[lncli] rpc error: code = Unknown desc = max hash string length is 64 bytes
lnshell@834bc7966a66:~$ lncli closechannel --force 30b66b20dff1cde78ee94b43c04cc6b016096b27aac46816709d33ef44f3adc1-0
[lncli] rpc error: code = Unknown desc = max hash string length is 64 bytes
lnshell@834bc7966a66:~$ lncli closechannel --force 30b66b20dff1cde78ee94b43c04cc6b016096b27aac46816709d33ef44f3adc1 0
[lncli] rpc error: code = Unknown desc = channel not found
Thank you.