sc-cli: add no-beefy flag to cli config (#14754)

Signed-off-by: Adrian Catangiu <adrian@parity.io>
This commit is contained in:
Adrian Catangiu
2023-08-11 17:35:29 +03:00
committed by GitHub
parent 0baa643314
commit 64dda775f4
7 changed files with 22 additions and 0 deletions
+2
View File
@@ -112,6 +112,8 @@ pub struct Configuration {
pub force_authoring: bool,
/// Disable GRANDPA when running in validator mode
pub disable_grandpa: bool,
/// Disable BEEFY when running in validator mode
pub disable_beefy: bool,
/// Development key seed.
///
/// When running in development mode, the seed will be used to generate authority keys by the
+1
View File
@@ -260,6 +260,7 @@ fn node_config<
offchain_worker: Default::default(),
force_authoring: false,
disable_grandpa: false,
disable_beefy: false,
dev_key_seed: key_seed,
tracing_targets: None,
tracing_receiver: Default::default(),