We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1d71af commit 0a0d51cCopy full SHA for 0a0d51c
docs/release-notes/release-notes-0.18.3.md
@@ -55,6 +55,24 @@
55
56
# Improvements
57
## Functional Updates
58
+
59
+* A new field, `min_relay_feerate`, is [now
60
+ expected](https://github.com/lightningnetwork/lnd/pull/8891) in the response
61
+ from querying the external fee estimation URL. The new response should have
62
+ the format,
63
+ ```json
64
+ {
65
+ "fee_by_block_target": {
66
+ "2": 5076,
67
+ "3": 4228,
68
+ "26": 4200
69
+ },
70
+ "min_relay_feerate": 1000
71
+ }
72
+ ```
73
+ All units are `sats/kvB`. If the new field `min_relay_feerate` is not set,
74
+ the default floor feerate (1012 sats/kvB) will be used.
75
76
## RPC Updates
77
78
* [`xImportMissionControl`](https://github.com/lightningnetwork/lnd/pull/8779)
0 commit comments