Enable Light Client server by default (#6950)

This commit is contained in:
Eitan Seri-Levi
2025-02-10 03:27:03 +02:00
committed by GitHub
parent e3e21f7516
commit afdda83798
7 changed files with 48 additions and 17 deletions

View File

@@ -1494,9 +1494,18 @@ pub fn cli_app() -> Command {
.arg(
Arg::new("light-client-server")
.long("light-client-server")
.help("Act as a full node supporting light clients on the p2p network \
[experimental]")
.help("DEPRECATED")
.action(ArgAction::SetTrue)
.help_heading(FLAG_HEADER)
.display_order(0)
)
.arg(
Arg::new("disable-light-client-server")
.long("disable-light-client-server")
.help("Disables light client support on the p2p network")
.action(ArgAction::SetTrue)
.help_heading(FLAG_HEADER)
.display_order(0)
)