@@ -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,19 +1423,12 @@ 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" );
1449
1429
opt_register_early_noarg ("--experimental-peer-storage" ,
1450
1430
opt_set_peer_storage , ld ,
1451
1431
opt_hidden );
1452
- opt_register_early_noarg ("--experimental-quiesce" ,
1453
- opt_set_quiesce , ld ,
1454
- "experimental: Advertise ability to quiesce"
1455
- " channels." );
1456
1432
1457
1433
clnopt_noarg ("--help|-h" , OPT_EXITS ,
1458
1434
opt_lightningd_usage , ld , "Print this message." );
0 commit comments