@@ -94,6 +94,10 @@ circuit. The indices are only available for forwarding events saved after v0.20.
9494 finish under this timeout value. Consider using a larger timeout value if you
9595 have a slow network.
9696
97+ * The default value for ` gossip.msg-rate-bytes ` has been
98+ [ increased] ( https://github.com/lightningnetwork/lnd/pull/10096 ) from 100KB to
99+ 1MB, and ` gossip.msg-burst-bytes ` has been increased from 200KB to 2MB.
100+
97101* Added [ ` deletecanceledinvoices ` ] (
98102 https://github.com/lightningnetwork/lnd/pull/9625 ) RPC to allow the removal of
99103 a canceled invoice. Supports deleting a canceled invoice by providing its
@@ -105,6 +109,14 @@ circuit. The indices are only available for forwarding events saved after v0.20.
105109 disconnected and banned. Setting the value to 0 effectively disables banning
106110 by setting the threshold to the maximum possible value.
107111
112+ * A [ new config] ( https://github.com/lightningnetwork/lnd/pull/10103 ) value
113+ ` gossip.peer-msg-rate-bytes=102400 ` is introduced to allow limiting the
114+ outgoing bandwidth used by each peer when processing gossip-related messages.
115+ Note this is different from ` gossip.msg-rate-bytes ` , as this new config
116+ controls the bandwidth per peer, while ` msg-rate-bytes ` controls the gossip as
117+ a whole. This new config prevents a single misbehaving peer from using up all
118+ the bandwidth.
119+
108120## lncli Additions
109121
110122* [ ` lncli sendpayment ` and ` lncli queryroutes ` now support the
@@ -174,6 +186,9 @@ reader of a payment request.
174186- [ Refactored] ( https://github.com/lightningnetwork/lnd/pull/10018 ) ` channelLink `
175187 to improve readability and maintainability of the code.
176188
189+ - [ Introduced] ( https://github.com/lightningnetwork/lnd/pull/10136 ) a wallet
190+ interface to decouple the relationship between ` lnd ` and ` btcwallet ` .
191+
177192## Breaking Changes
178193## Performance Improvements
179194
0 commit comments