Skip to content

Commit f69fdd2

Browse files
committed
deprecations: update v25.08 to v25.09.
There's only one (but in multiple places!). Signed-off-by: Rusty Russell <[email protected]>
1 parent 2b8b709 commit f69fdd2

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

doc/developers-guide/deprecations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ hidden: false
1515
| commando-rune | Command | v23.08 | v25.02 | replaced with `lightning-createrune` |
1616
| commando-listrunes | Command | v23.08 | v25.02 | replaced with `lightning-showrunes` |
1717
| commando-blacklist | Command | v23.08 | v25.02 | replaced with `lightning-blacklistrune` |
18-
| listpeers.features.option_anchors_zero_fee_htlc_tx | Field | v24.08 | v25.08 | Renamed to `option_anchors` in the spec: check for that in `features` instead |
18+
| listpeers.features.option_anchors_zero_fee_htlc_tx | Field | v24.08 | v25.09 | Renamed to `option_anchors` in the spec: check for that in `features` instead |
1919
| experimental-anchors | Config | v24.02 | v25.02 | Now the default |
2020
| experimental-onion-messages | Config | v24.08 | v25.02 | Now the default |
2121
| decode.blinding | Field | v24.11 | v25.05 | Renamed to `first_path_key` in BOLT 4 (available in `decode` from v24.11) |

lightningd/dual_open_control.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ void json_add_unsaved_channel(struct command *cmd,
164164
if (feature_negotiated(channel->peer->ld->our_features,
165165
channel->peer->their_features,
166166
OPT_ANCHORS_ZERO_FEE_HTLC_TX)) {
167-
if (command_deprecated_out_ok(cmd, "features", "v24.08", "v25.08"))
167+
if (command_deprecated_out_ok(cmd, "features", "v24.08", "v25.09"))
168168
json_add_string(response, NULL, "option_anchors_zero_fee_htlc_tx");
169169
json_add_string(response, NULL, "option_anchors");
170170
}

lightningd/opening_control.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ void json_add_uncommitted_channel(struct command *cmd,
7474
if (feature_negotiated(uc->peer->ld->our_features,
7575
uc->peer->their_features,
7676
OPT_ANCHORS_ZERO_FEE_HTLC_TX)) {
77-
if (command_deprecated_out_ok(cmd, "features", "v24.08", "v25.08"))
77+
if (command_deprecated_out_ok(cmd, "features", "v24.08", "v25.09"))
7878
json_add_string(response, NULL, "option_anchors_zero_fee_htlc_tx");
7979
json_add_string(response, NULL, "option_anchors");
8080
}

lightningd/peer_control.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1060,7 +1060,7 @@ static void NON_NULL_ARGS(1, 2, 4, 5) json_add_channel(struct command *cmd,
10601060
if (channel_has(channel, OPT_ANCHOR_OUTPUTS_DEPRECATED))
10611061
json_add_string(response, NULL, "option_anchor_outputs");
10621062
if (channel_has(channel, OPT_ANCHORS_ZERO_FEE_HTLC_TX)) {
1063-
if (command_deprecated_out_ok(cmd, "features", "v24.08", "v25.08"))
1063+
if (command_deprecated_out_ok(cmd, "features", "v24.08", "v25.09"))
10641064
json_add_string(response, NULL, "option_anchors_zero_fee_htlc_tx");
10651065
json_add_string(response, NULL, "option_anchors");
10661066
}

0 commit comments

Comments
 (0)