Enable BEEFY explicitly (#4320)

* enable beefy explicitly

* update beefy cli flag docs
This commit is contained in:
André Silva
2021-11-18 17:10:23 +00:00
committed by GitHub
parent 946bd0953b
commit be85d5cb96
3 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -101,9 +101,9 @@ pub struct RunCmd {
#[structopt(long = "grandpa-pause", number_of_values(2))]
pub grandpa_pause: Vec<u32>,
/// Disable BEEFY gadget.
/// Enable the BEEFY gadget (only on Rococo or Wococo for now).
#[structopt(long)]
pub no_beefy: bool,
pub beefy: bool,
/// Add the destination address to the jaeger agent.
///
+1 -1
View File
@@ -254,7 +254,7 @@ fn run_node_inner(cli: Cli, overseer_gen: impl service::OverseerGen) -> Result<(
config,
service::IsCollator::No,
grandpa_pause,
cli.run.no_beefy,
cli.run.beefy,
jaeger_agent,
None,
overseer_gen,