Merge pull request #9996 from calvinrzachman/lseed

chainreg: use new lseed service
This commit is contained in:
Oliver Gugger
2025-06-27 12:31:28 +02:00
committed by GitHub
2 changed files with 18 additions and 5 deletions

View File

@@ -878,8 +878,8 @@ var (
ChainDNSSeeds = map[chainhash.Hash][][2]string{
BitcoinMainnetGenesis: {
{
"nodes.lightning.directory",
"soa.nodes.lightning.directory",
"nodes.lightning.wiki",
"soa.nodes.lightning.wiki",
},
{
"lseed.bitcoinstats.com",
@@ -888,14 +888,22 @@ var (
BitcoinTestnetGenesis: {
{
"test.nodes.lightning.directory",
"soa.nodes.lightning.directory",
"test.nodes.lightning.wiki",
"soa.nodes.lightning.wiki",
},
},
BitcoinTestnet4Genesis: {
{
"test4.nodes.lightning.wiki",
"soa.nodes.lightning.wiki",
},
},
BitcoinSignetGenesis: {
{
"ln.signet.secp.tech",
"signet.nodes.lightning.wiki",
"soa.nodes.lightning.wiki",
},
},
}

View File

@@ -41,6 +41,11 @@
`FeeForWeightRoundUp` to the `chainfee` package which rounds up a calculated
fee value to the nearest satoshi.
- [Update](https://github.com/lightningnetwork/lnd/pull/9996) lnd to point at
the new deployment of the lightning seed service which is used to provide
candidate peers during initial network bootstrap. The lseed service now
supports `testnet4` and `signet` networks as well.
## RPC Additions
## lncli Additions