mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 21:01:05 +00:00
companion for 14754: cli: move no-beefy flag to sc-cli (#2996)
* companion 14754: no-beefy flag moved to sc-cli Signed-off-by: Adrian Catangiu <adrian@parity.io> * bump substrate ref Signed-off-by: Adrian Catangiu <adrian@parity.io> * bump polkadot ref --------- Signed-off-by: Adrian Catangiu <adrian@parity.io>
This commit is contained in:
@@ -265,7 +265,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(
|
||||
config: Configuration,
|
||||
mut config: Configuration,
|
||||
parachain_config: &Configuration,
|
||||
telemetry_worker_handle: Option<TelemetryWorkerHandle>,
|
||||
hwbench: Option<sc_sysinfo::HwBench>,
|
||||
@@ -277,13 +277,14 @@ fn build_polkadot_full_node(
|
||||
(polkadot_service::IsCollator::No, 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_collator,
|
||||
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,
|
||||
|
||||
|
||||
Reference in New Issue
Block a user