I’m tremendous new to lightning improvement and simply beginning to mess around with stuff and needed to execute some round rebalancing funds, however was confronted with issues coming from the getroute methodology
My downside: I setup a regtest graph consisting of three nodes
A<—(25Ksat)-(40Ksat)-(15Ksat)—>B<—(35Ksat)-(65Ksat)-(30Ksat)—>C<—(60Ksat)-(90Ksat)-(30Ksat)—>A.
From the node A I execute
lcli getroute <C_ID> 5000sat 0 <TRIED_ALL_VALUES> <A_ID> 100.0 ["<C_ID>"]
excludes incorporates C_ID to keep away from displaying direct connections. When excludes incorporates <A_ID> the direct connection is proposed. I hope to see the A—>B—>C route, however solely get A—>C.
Now, all of the channels I created are publicly introduced, but when I attempt to execute lcli listchannels on any of my nodes, I finish seeing solely my channels. What did I miss? Moreover, if I execute lcli listnodes I solely see my direct friends, not the opposite nodes on the community. As if the bulletins on the gossip community don’t come although.
I’m tremendous grateful for any trace or thought!
Each node has the identical config. Listed below are the configs from lcli listconfigs (besides the plugins part, which is kind of massive and can be distracting):
{
"# model": "v0.12.1",
"conf": "/root/.lightning/config",
"lightning-dir": "/information/lightning",
"community": "regtest",
"allow-deprecated-apis": true,
"rpc-file": "lightning-rpc",
"plugins": [...],
"important-plugins": [...],
"always-use-proxy": false,
"daemon": true,
"pockets": "sqlite3:///information/lightning/regtest/lightningd.sqlite3",
"large-channels": false,
"experimental-dual-fund": false,
"experimental-onion-messages": false,
"experimental-offers": false,
"experimental-shutdown-wrong-funding": false,
"rgb": "03dac7",
"alias": "IRATEGENESIS-v0.12.1",
"pid-file": "/information/lightning/lightningd-regtest.pid",
"ignore-fee-limits": true,
"watchtime-blocks": 6,
"max-locktime-blocks": 2016,
"funding-confirms": 1,
"cltv-delta": 6,
"cltv-final": 20,
"commit-time": 10,
"fee-base": 0,
"rescan": 30,
"fee-per-satoshi": 0,
"htlc-minimum-msat": "0msat",
"htlc-maximum-msat": "18446744073709551615msat",
"max-concurrent-htlcs": 483,
"max-dust-htlc-exposure-msat": "50000000msat",
"min-capacity-sat": 10000,
"disable-ip-discovery": false,
"offline": false,
"autolisten": true,
"disable-dns": false,
"encrypted-hsm": false,
"rpc-file-mode": "0600",
"log-level": "information",
"log-timestamps": true,
"log-prefix": "",
"log-file": "/var/log/lightning/lightningd.log"
}
And right here is the results of lcli getinfo:
{
"id": "03dac78928a90839c2e7a4ba1e5a1567466f944ba1345cfe1fee9da226f1a34aef",
"alias": "IRATEGENESIS-v0.12.1",
"coloration": "03dac7",
"num_peers": 2,
"num_pending_channels": 0,
"num_active_channels": 2,
"num_inactive_channels": 0,
"deal with": [],
"binding": [
{
"type": "ipv6",
"address": "::",
"port": 19846
},
{
"type": "ipv4",
"address": "0.0.0.0",
"port": 19846
}
],
"model": "v0.12.1",
"blockheight": 162,
"community": "regtest",
"msatoshi_fees_collected": 0,
"fees_collected_msat": "0msat",
"lightning-dir": "/information/lightning/regtest",
"our_features": {
"init": "08a000080269a2",
"node": "88a000080269a2",
"channel": "",
"bill": "02000000024100"
}
}
