@@ -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-
12731256static char * opt_set_db_upgrade (const char * arg , struct lightningd * ld )
12741257{
12751258 ld -> db_upgrade_ok = tal (ld , bool );
@@ -1440,19 +1423,12 @@ 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" );
14491429 opt_register_early_noarg ("--experimental-peer-storage" ,
14501430 opt_set_peer_storage , ld ,
14511431 opt_hidden );
1452- opt_register_early_noarg ("--experimental-quiesce" ,
1453- opt_set_quiesce , ld ,
1454- "experimental: Advertise ability to quiesce"
1455- " channels." );
14561432
14571433 clnopt_noarg ("--help|-h" , OPT_EXITS ,
14581434 opt_lightningd_usage , ld , "Print this message." );
0 commit comments