Skip to content

Commit

Permalink
Make collator RPC mode non-experimental (#2381)
Browse files Browse the repository at this point in the history
The `--relay-chain-rpc-urls` CLI flag has been available for a while
now. We have collators with this running and parachain teams are also
using it. It should be fine now to remove the experimental status.
  • Loading branch information
skunert authored Nov 17, 2023
1 parent 0385902 commit 9e34163
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion cumulus/client/cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 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 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.
#[arg(
long,
value_parser = validate_relay_chain_url,
Expand Down

0 comments on commit 9e34163

Please sign in to comment.