vulpemventures / nigiri

🍣 A delicious docker box for special Bitcoin, Lightning and Liquid cookings
https://nigiri.vulpem.com
MIT License
268 stars 42 forks source link

Fix CLN p2p port #166

Closed andrei-21 closed 1 year ago

andrei-21 commented 1 year ago

LIGHTNINGD_PORT is not consumed by https://github.com/ElementsProject/lightning/blob/master/tools/docker-entrypoint.sh nor lightningd. Before the fix:

$ nigiri lnd connect `nigiri cln getinfo | jq -r .id`@cln:9935
[lncli] rpc error: code = Unknown desc = dial tcp 172.24.0.4:9935: connect: connection refused
exit status 1

After the fix:

$ nigiri lnd connect `nigiri cln getinfo | jq -r .id`@cln:9935
{

}
andrei-21 commented 1 year ago

@tiero can you review it please? Do you need any help?

tiero commented 1 year ago

Done!

andrei-21 commented 1 year ago

Thanks!