-
Hi, I run lnd 0.14 (master) and have troubles opening a channel to ACINQ (despite already having two open channels). lnd complains about "unexpected channel type" (https://github.com/lightningnetwork/lnd/blob/7f656a25500d246405c3fd51ea741cac1874722e/funding/manager.go#L1589). Any idea what might be the cause of this? My invocation attempt:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
This is probably because lnd is trying to open an In all cases, this is an issue that should be opened on the lnd repository IMHO. |
Beta Was this translation helpful? Give feedback.
-
Yeah, it's an lnd issue. Seems to be related to this: lightningnetwork/lnd#5890 |
Beta Was this translation helpful? Give feedback.
This is probably because lnd is trying to open an
anchor_outputs_zero_fee_htlc_tx
channel, whereas our node did not activate this feature.So our node replies with the
channel_type
it would accept, but lnd seems to truncate our error message.If you look at your logs, you should see what
channel_type
we expect.Then hopefully the lnd cli lets you specify the
channel_type
you want to use inopenchannel
.In all cases, this is an issue that should be opened on the lnd repository IMHO.