File tree Expand file tree Collapse file tree 2 files changed +0
-21
lines changed Expand file tree Collapse file tree 2 files changed +0
-21
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ hidden: false
11
11
| decodepay | Command | v24.11 | v25.12 | Use ` decode ` which is more powerful (since v23.05) |
12
12
| close.tx | Field | v24.11 | v25.12 | Use txs array instead |
13
13
| close.txid | Field | v24.11 | v25.12 | Use txids array instead |
14
- | experimental-offers | Config | v24.11 | v25.05 | Now the default |
15
14
| 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) |
16
15
| listpeerchannels.max_total_htlc_in_msat | Field | v25.02 | v26.03 | Use our_max_total_htlc_out_msat |
17
16
| wait.details | Field | v25.05 | v26.06 | Use subsystem-specific object instead |
Original file line number Diff line number Diff line change @@ -1253,23 +1253,6 @@ static char *opt_set_peer_storage(struct lightningd *ld)
1253
1253
return NULL ;
1254
1254
}
1255
1255
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
-
1273
1256
static char * opt_set_db_upgrade (const char * arg , struct lightningd * ld )
1274
1257
{
1275
1258
ld -> db_upgrade_ok = tal (ld , bool );
@@ -1440,9 +1423,6 @@ static void register_opts(struct lightningd *ld)
1440
1423
" channels using splicing" );
1441
1424
1442
1425
/* This affects our features, so set early. */
1443
- opt_register_early_noarg ("--experimental-offers" ,
1444
- opt_set_offers , ld ,
1445
- opt_hidden );
1446
1426
opt_register_early_noarg ("--experimental-shutdown-wrong-funding" ,
1447
1427
opt_set_shutdown_wrong_funding , ld ,
1448
1428
"EXPERIMENTAL: allow shutdown with alternate txids" );
You can’t perform that action at this time.
0 commit comments