From 2a3db35158c3c4eb6d7a3383d6ebb337a1f95ad5 Mon Sep 17 00:00:00 2001 From: Elle Mouton Date: Mon, 4 Nov 2024 11:11:59 +0200 Subject: [PATCH] docs: update release notes --- docs/release-notes/release-notes-0.19.0.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/release-notes/release-notes-0.19.0.md b/docs/release-notes/release-notes-0.19.0.md index d9aae3c31c7..e9d7037b3ea 100644 --- a/docs/release-notes/release-notes-0.19.0.md +++ b/docs/release-notes/release-notes-0.19.0.md @@ -181,6 +181,13 @@ The underlying functionality between those two options remain the same. `channeldb` package](https://github.com/lightningnetwork/lnd/pull/9236) and into the `graph/db` package. +* Add a [graph source abstraction](https://github.com/lightningnetwork/lnd/pull/9243) + and use it throughout LND. This is so that callers of LND can choose provide + it with an external graph source rather than requiring it to first sync its + own graph. A new `--gossip.no-sync` config option has also been added which + can be used to switch off gossip syncing so that LND does not attempt to sync + its own graph. + ## Tooling and Documentation * [Improved `lncli create` command help text](https://github.com/lightningnetwork/lnd/pull/9077)