Skip to content

Commit 59bca35

Browse files
committed
lightningd: remove --experimental-quiesce and --experimental-offers
Deprecated 24.11, disabled 25.05 (they're the default now). Signed-off-by: Rusty Russell <[email protected]> Changelog-Removed: Config: --experimental-offers and --experimental-quiesce (default since v24.11)
1 parent 59bb545 commit 59bca35

File tree

2 files changed

+0
-21
lines changed

2 files changed

+0
-21
lines changed

doc/developers-guide/deprecated-features.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ hidden: false
1111
| decodepay | Command | v24.11 | v25.12 | Use `decode` which is more powerful (since v23.05) |
1212
| close.tx | Field | v24.11 | v25.12 | Use txs array instead |
1313
| close.txid | Field | v24.11 | v25.12 | Use txids array instead |
14-
| experimental-offers | Config | v24.11 | v25.05 | Now the default |
1514
| xpay.ignore_bolt12_mpp | Field | v25.05 | v25.12 | Try MPP even if the BOLT12 invoice doesn't explicitly allow it (CLN didn't until 25.02) |
1615
| listpeerchannels.max_total_htlc_in_msat | Field | v25.02 | v26.03 | Use our_max_total_htlc_out_msat |
1716
| wait.details | Field | v25.05 | v26.06 | Use subsystem-specific object instead |

lightningd/options.c

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1253,23 +1253,6 @@ static char *opt_set_peer_storage(struct lightningd *ld)
12531253
return NULL;
12541254
}
12551255

1256-
static char *opt_set_quiesce(struct lightningd *ld)
1257-
{
1258-
if (!opt_deprecated_ok(ld, "experimental-quiesce", NULL,
1259-
"v24.11", "v25.05"))
1260-
return "--experimental-quiesce is now enabled by default";
1261-
return NULL;
1262-
}
1263-
1264-
static char *opt_set_offers(struct lightningd *ld)
1265-
{
1266-
if (!opt_deprecated_ok(ld, "experimental-offers", NULL,
1267-
"v24.11", "v25.05"))
1268-
return "--experimental-offers has been deprecated (now the default)";
1269-
1270-
return NULL;
1271-
}
1272-
12731256
static char *opt_set_db_upgrade(const char *arg, struct lightningd *ld)
12741257
{
12751258
ld->db_upgrade_ok = tal(ld, bool);
@@ -1440,9 +1423,6 @@ static void register_opts(struct lightningd *ld)
14401423
" channels using splicing");
14411424

14421425
/* This affects our features, so set early. */
1443-
opt_register_early_noarg("--experimental-offers",
1444-
opt_set_offers, ld,
1445-
opt_hidden);
14461426
opt_register_early_noarg("--experimental-shutdown-wrong-funding",
14471427
opt_set_shutdown_wrong_funding, ld,
14481428
"EXPERIMENTAL: allow shutdown with alternate txids");

0 commit comments

Comments
 (0)