Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Merge pull request #3021 from mrfelton/fix/neutrino-peers
Browse files Browse the repository at this point in the history
fix(lnd): connect to additional neutrino peers
  • Loading branch information
mrfelton authored Oct 20, 2019
2 parents 0bc8fc4 + 116f8bc commit cdb8809
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/neutrino/neutrino.js
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ class Neutrino extends EventEmitter {
neutrinoArgs.push(`--neutrino.useragentversion=${getPackageDetails().version}`)
neutrinoArgs.push(`--${this.lndConfig.chain}.${this.lndConfig.network}`)
config.lnd.neutrino[this.lndConfig.chain][this.lndConfig.network].forEach(node =>
neutrinoArgs.push(`--neutrino.connect=${node}`)
neutrinoArgs.push(`--neutrino.addpeer=${node}`)
)

return neutrinoArgs
Expand Down

0 comments on commit cdb8809

Please sign in to comment.