companion for 14754: cli: move no-beefy flag to sc-cli (#7600)

* cli: move no-beefy flag to substrate sc-cli config

* bump substrate ref

---------

Signed-off-by: Adrian Catangiu <adrian@parity.io>
This commit is contained in:
Adrian Catangiu
2023-08-11 18:30:58 +03:00
committed by GitHub
parent 693a29da1a
commit 26adab4f7c
7 changed files with 195 additions and 202 deletions
@@ -53,15 +53,15 @@ fn main() -> Result<()> {
)
})?;
runner.run_node_until_exit(|config| async move {
runner.run_node_until_exit(|mut config| async move {
let collator = Collator::new(cli.run.pov_size, cli.run.pvf_complexity);
config.disable_beefy = true;
let full_node = polkadot_service::build_full(
config,
polkadot_service::NewFullParams {
is_collator: polkadot_service::IsCollator::Yes(collator.collator_key()),
grandpa_pause: None,
enable_beefy: false,
jaeger_agent: None,
telemetry_worker_handle: None,