Replies: 1 comment 5 replies
-
Force closing means publishing the latest pre-signed state of a channel. So you cannot change the fees on the force close transaction as that would require your peer to re-sign. You can use |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Background
I used LNDg for force closing a channel with a peer listed as zombie by hashxp. I put the going mempool rate (32 sats/vbyte) in the input field.I checked FC. The tx abb3911e626189026728e6966885806a2681fda0fba44388a521868d6ceb8a4f was sent to mempool with a much lower fee (11 sats/vbyte according to mempool explorer), and lncli now says "waiting close" for this channel. Not able to FC from lncli, a force close attempt via lncli outputs: lncli] rpc error: code = Unknown desc = channel is already in the process of being force closed.
Then I tried lncli wallet bumpclosefee using the closing tx in the command and trying with both indexes. For both inputs I get "intercept already started"
In the waiting close output I see this:
"chan_status_flags": "ChanStatusBorked|ChanStatusCommitBroadcasted|ChanStatusLocalCloseInitiator"
pendingsweeps outputs:
"pending_sweeps": [
{
"outpoint": "86b36d4472c29752c1d9f52844a0b1785f9c33143453cc04895b4a2ac68b5ce9:0",
"witness_type": "COMMITMENT_ANCHOR",
"amount_sat": 330,
"sat_per_vbyte": 32,
"broadcast_attempts": 0,
"next_broadcast_height": 818957,
"requested_sat_per_vbyte": 0,
"requested_conf_target": 144,
"force": false
},
{
"outpoint": "abb3911e626189026728e6966885806a2681fda0fba44388a521868d6ceb8a4f:0",
"witness_type": "COMMITMENT_ANCHOR",
"amount_sat": 330,
"sat_per_vbyte": 32,
"broadcast_attempts": 0,
"next_broadcast_height": 818957,
"requested_sat_per_vbyte": 0,
"requested_conf_target": 144,
"force": false
Your environment: LND 0.17.2-beta, Bitcoin Bitcoin Core 25.1.0, Umbrel on a RasPi
Steps to reproduce: Not sure if this can be easily reproduced. It would require Umbrel and LNDg
Expected behaviour
When I started the tx in LNDg I expected a fast transacting force close.
Actual behaviour
Transaction is stuck in waiting close with a low slow fee, and my attempts to bump the fee are unsuccessful
Beta Was this translation helpful? Give feedback.
All reactions