Skip to content

Commit 6290edf

Browse files
authored
Merge pull request #9996 from calvinrzachman/lseed
chainreg: use new lseed service
2 parents e75c82e + d9f0622 commit 6290edf

File tree

2 files changed

+18
-5
lines changed

2 files changed

+18
-5
lines changed

chainreg/chainregistry.go

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -878,8 +878,8 @@ var (
878878
ChainDNSSeeds = map[chainhash.Hash][][2]string{
879879
BitcoinMainnetGenesis: {
880880
{
881-
"nodes.lightning.directory",
882-
"soa.nodes.lightning.directory",
881+
"nodes.lightning.wiki",
882+
"soa.nodes.lightning.wiki",
883883
},
884884
{
885885
"lseed.bitcoinstats.com",
@@ -888,14 +888,22 @@ var (
888888

889889
BitcoinTestnetGenesis: {
890890
{
891-
"test.nodes.lightning.directory",
892-
"soa.nodes.lightning.directory",
891+
"test.nodes.lightning.wiki",
892+
"soa.nodes.lightning.wiki",
893+
},
894+
},
895+
896+
BitcoinTestnet4Genesis: {
897+
{
898+
"test4.nodes.lightning.wiki",
899+
"soa.nodes.lightning.wiki",
893900
},
894901
},
895902

896903
BitcoinSignetGenesis: {
897904
{
898-
"ln.signet.secp.tech",
905+
"signet.nodes.lightning.wiki",
906+
"soa.nodes.lightning.wiki",
899907
},
900908
},
901909
}

docs/release-notes/release-notes-0.19.2.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,11 @@
4141
`FeeForWeightRoundUp` to the `chainfee` package which rounds up a calculated
4242
fee value to the nearest satoshi.
4343

44+
- [Update](https://github.com/lightningnetwork/lnd/pull/9996) lnd to point at
45+
the new deployment of the lightning seed service which is used to provide
46+
candidate peers during initial network bootstrap. The lseed service now
47+
supports `testnet4` and `signet` networks as well.
48+
4449
## RPC Additions
4550

4651
## lncli Additions

0 commit comments

Comments
 (0)