Skip to content

Commit

Permalink
fix(cln): Missing address flag for announcing externally (#608)
Browse files Browse the repository at this point in the history
The missing `--addr=0.0.0.0:9735` causes failure in connecting to core-lightning nodes externally. Polar in the connect tab shows P2P External for core-lightning nodes but it does not work because it's not being announced.
  • Loading branch information
niteshbalusu11 authored Oct 13, 2022
1 parent 2f87238 commit b011dfc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ export const dockerConfigs: Record<NodeImplementation, DockerConfig> = {
'lightningd',
'--alias={{name}}',
'--addr={{name}}',
'--addr=0.0.0.0:9735',
'--network=regtest',
'--bitcoin-rpcuser={{rpcUser}}',
'--bitcoin-rpcpassword={{rpcPass}}',
Expand Down

0 comments on commit b011dfc

Please sign in to comment.