From 296d37ac7f04a986dc75c246ae7ddd9f843bfd99 Mon Sep 17 00:00:00 2001 From: Luke Schoen Date: Wed, 10 Apr 2019 21:43:50 +0200 Subject: [PATCH] docs: Update Substrate CLI Light option to be experimental (#2250) Consistency with Parity Ethereum CLI Light option https://github.com/paritytech/parity-ethereum/blob/master/parity/cli/mod.rs#L263 --- substrate/core/cli/src/params.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/substrate/core/cli/src/params.rs b/substrate/core/cli/src/params.rs index 321cf17efb..0c1c48eee1 100644 --- a/substrate/core/cli/src/params.rs +++ b/substrate/core/cli/src/params.rs @@ -305,7 +305,7 @@ pub struct RunCmd { #[structopt(long = "no-grandpa")] pub no_grandpa: bool, - /// Run in light client mode + /// Experimental: Run in light client mode #[structopt(long = "light")] pub light: bool,