From 0a0d51ce22e5410cdc116350b0a5f83297d68ea9 Mon Sep 17 00:00:00 2001 From: yyforyongyu Date: Fri, 19 Jul 2024 16:12:06 +0800 Subject: [PATCH] docs: update release notes --- docs/release-notes/release-notes-0.18.3.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/docs/release-notes/release-notes-0.18.3.md b/docs/release-notes/release-notes-0.18.3.md index 8d658624f..ba39d05e7 100644 --- a/docs/release-notes/release-notes-0.18.3.md +++ b/docs/release-notes/release-notes-0.18.3.md @@ -55,6 +55,24 @@ # Improvements ## Functional Updates + +* A new field, `min_relay_feerate`, is [now + expected](https://github.com/lightningnetwork/lnd/pull/8891) in the response + from querying the external fee estimation URL. The new response should have + the format, + ```json + { + "fee_by_block_target": { + "2": 5076, + "3": 4228, + "26": 4200 + }, + "min_relay_feerate": 1000 + } + ``` + All units are `sats/kvB`. If the new field `min_relay_feerate` is not set, + the default floor feerate (1012 sats/kvB) will be used. + ## RPC Updates * [`xImportMissionControl`](https://github.com/lightningnetwork/lnd/pull/8779)