I setup 6 lnd nodes(lnd-0, lnd-1 ~ lnd-5) in the local network, each of them anchoring to bitcoin node.
I tried several times following steps: (from lnd-0 for example)
- start lnd
- lncli create
- lncli connect {identity_pubkey of lnd-1}@{lnd-1 ip addr}:9735
- lncli openchannel {identity_pubkey of lnd-1} 100000
now I get ‘funding tx’ from the 4th command but ‘lncli listchannels’ does not show anything but it shows in ‘lncli pendingchannels’. I can’t find the funding tx by either ‘bitcoin-cli getmempoolentry {funding_tx}’ nor in the block explorer.
Seems like there is been some misconfiguration with the lnd. but the result of ‘lncli getinfo’ just seems to be fine.
"synced_to_chain": true,
"synced_to_graph": true,
"testnet": false,
"chains": [
{
"chain": "bitcoin",
"network": "mainnet"
}
],
"uris": [],
"features": {
"0": {
"name": "data-loss-protect",
"is_required": true,
"is_known": true
},
"5": {
"name": "upfront-shutdown-script",
"is_required": false,
"is_known": true
},
"7": {
"name": "gossip-queries",
"is_required": false,
"is_known": true
},
"8": {
"name": "tlv-onion",
"is_required": true,
"is_known": true
},
"12": {
"name": "static-remote-key",
"is_required": true,
"is_known": true
},
"14": {
"name": "payment-addr",
"is_required": true,
"is_known": true
},
"17": {
"name": "multi-path-payments",
"is_required": false,
"is_known": true
},
"23": {
"name": "anchors-zero-fee-htlc-tx",
"is_required": false,
"is_known": true
},
"25": {
"name": "route-blinding",
"is_required": false,
"is_known": true
},
"27": {
"name": "shutdown-any-segwit",
"is_required": false,
"is_known": true
},
"30": {
"name": "amp",
"is_required": true,
"is_known": true
},
"31": {
"name": "amp",
"is_required": false,
"is_known": true
},
"45": {
"name": "explicit-commitment-type",
"is_required": false,
"is_known": true
},
"2023": {
"name": "script-enforced-lease",
"is_required": false,
"is_known": true
}
},
"require_htlc_interceptor": false,
"store_final_htlc_resolutions": false
What do I need to look into to get any hint to solve this problem?