From 72e176b38eaea83361408037bdb169c594f6f833 Mon Sep 17 00:00:00 2001 From: Sebastian Kunert Date: Fri, 17 Nov 2023 10:53:11 +0100 Subject: [PATCH 1/2] Remove experimental description, improve text --- cumulus/client/cli/src/lib.rs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/cumulus/client/cli/src/lib.rs b/cumulus/client/cli/src/lib.rs index 1b18ed064373..e53ff581e618 100644 --- a/cumulus/client/cli/src/lib.rs +++ b/cumulus/client/cli/src/lib.rs @@ -296,7 +296,14 @@ pub struct RunCmd { #[arg(long, conflicts_with = "validator")] pub collator: bool, - /// EXPERIMENTAL: Specify an URL to a relay chain full node to communicate with. + /// Creates a node that uses fewer resources by retrieving relay chain data from a remote node. + /// The provided URLs should point to RPC endpoints of the relay chain. + /// + /// This node connects to the remote nodes following the order they were specified in. If the + /// connection to one fails, it attempts to connect to the next in the list. + /// + /// Note: This option doesn't stop the node from connecting to the relay chain network but + /// reduces bandwidth use. #[arg( long, value_parser = validate_relay_chain_url, From d333fc6879c145b7c5caab84ed0719e39ff3880b Mon Sep 17 00:00:00 2001 From: Sebastian Kunert Date: Fri, 17 Nov 2023 16:22:06 +0100 Subject: [PATCH 2/2] Improve wording --- cumulus/client/cli/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cumulus/client/cli/src/lib.rs b/cumulus/client/cli/src/lib.rs index e53ff581e618..a2238b73b2b5 100644 --- a/cumulus/client/cli/src/lib.rs +++ b/cumulus/client/cli/src/lib.rs @@ -296,11 +296,11 @@ pub struct RunCmd { #[arg(long, conflicts_with = "validator")] pub collator: bool, - /// Creates a node that uses fewer resources by retrieving relay chain data from a remote node. - /// The provided URLs should point to RPC endpoints of the relay chain. + /// Creates a less resource-hungry node that retrieves relay chain data from an RPC endpoint. /// + /// The provided URLs should point to RPC endpoints of the relay chain. /// This node connects to the remote nodes following the order they were specified in. If the - /// connection to one fails, it attempts to connect to the next in the list. + /// connection fails, it attempts to connect to the next endpoint in the list. /// /// Note: This option doesn't stop the node from connecting to the relay chain network but /// reduces bandwidth use.