Revert "companion for 14754: cli: move no-beefy flag to sc-cli (#2996)" (#3007)

* Revert "companion for 14754: cli: move no-beefy flag to sc-cli (#2996)"

This reverts commit ab840db20d.

* bump substrate ref

* update lockfile for {"polkadot", "substrate"}

---------

Co-authored-by: parity-processbot <>
This commit is contained in:
Adrian Catangiu
2023-08-15 19:40:54 +03:00
committed by GitHub
parent f75a57a763
commit d841bdca18
7 changed files with 269 additions and 285 deletions
@@ -267,7 +267,7 @@ pub fn check_block_in_chain(
/// Build the Polkadot full node using the given `config`.
#[sc_tracing::logging::prefix_logs_with("Relaychain")]
fn build_polkadot_full_node(
mut config: Configuration,
config: Configuration,
parachain_config: &Configuration,
telemetry_worker_handle: Option<TelemetryWorkerHandle>,
hwbench: Option<sc_sysinfo::HwBench>,
@@ -279,14 +279,13 @@ fn build_polkadot_full_node(
(polkadot_service::IsParachainNode::FullNode, None)
};
// Disable BEEFY. It should not be required by the internal relay chain node.
config.disable_beefy = true;
let relay_chain_full_node = polkadot_service::build_full(
config,
polkadot_service::NewFullParams {
is_parachain_node,
grandpa_pause: None,
// Disable BEEFY. It should not be required by the internal relay chain node.
enable_beefy: false,
jaeger_agent: None,
telemetry_worker_handle,