pull down to refresh

124 sats \ 1 reply \ @k00b 24 Mar

You're specifying the channel point as the first positional argument when closechannel expects the funding transaction id as the first positional argument.

Since the channel point's output index is 0 (the assumed output index), you can do any of:

  • lncli closechannel f3625a48414cc2af758f4fee8f006e440b79fb3d6002eba855759b53df5f7fa9
  • lncli closechannel f3625a48414cc2af758f4fee8f006e440b79fb3d6002eba855759b53df5f7fa9 0
  • lncli closechannel --chan_point valuef3625a48414cc2af758f4fee8f006e440b79fb3d6002eba855759b53df5f7fa9:0

docs: https://lightning.engineering/api-docs/api/lnd/lightning/close-channel/

reply

Thank you so much, that worked!(the semi colon needed to be a space) Running it on windows has been very adventurous to say the least, but fun figuring everything out.

reply