mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-17 20:41:02 +00:00
* 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:
Generated
+266
-264
File diff suppressed because it is too large
Load Diff
@@ -394,10 +394,6 @@ impl sc_cli::CliConfiguration for NormalizedRunCmd {
|
|||||||
self.base.disable_grandpa()
|
self.base.disable_grandpa()
|
||||||
}
|
}
|
||||||
|
|
||||||
fn disable_beefy(&self) -> sc_cli::Result<bool> {
|
|
||||||
self.base.disable_beefy()
|
|
||||||
}
|
|
||||||
|
|
||||||
fn rpc_max_connections(&self) -> sc_cli::Result<u32> {
|
fn rpc_max_connections(&self) -> sc_cli::Result<u32> {
|
||||||
self.base.rpc_max_connections()
|
self.base.rpc_max_connections()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -267,7 +267,7 @@ pub fn check_block_in_chain(
|
|||||||
/// Build the Polkadot full node using the given `config`.
|
/// Build the Polkadot full node using the given `config`.
|
||||||
#[sc_tracing::logging::prefix_logs_with("Relaychain")]
|
#[sc_tracing::logging::prefix_logs_with("Relaychain")]
|
||||||
fn build_polkadot_full_node(
|
fn build_polkadot_full_node(
|
||||||
mut config: Configuration,
|
config: Configuration,
|
||||||
parachain_config: &Configuration,
|
parachain_config: &Configuration,
|
||||||
telemetry_worker_handle: Option<TelemetryWorkerHandle>,
|
telemetry_worker_handle: Option<TelemetryWorkerHandle>,
|
||||||
hwbench: Option<sc_sysinfo::HwBench>,
|
hwbench: Option<sc_sysinfo::HwBench>,
|
||||||
@@ -279,14 +279,13 @@ fn build_polkadot_full_node(
|
|||||||
(polkadot_service::IsParachainNode::FullNode, None)
|
(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(
|
let relay_chain_full_node = polkadot_service::build_full(
|
||||||
config,
|
config,
|
||||||
polkadot_service::NewFullParams {
|
polkadot_service::NewFullParams {
|
||||||
is_parachain_node,
|
is_parachain_node,
|
||||||
grandpa_pause: None,
|
grandpa_pause: None,
|
||||||
|
// Disable BEEFY. It should not be required by the internal relay chain node.
|
||||||
|
enable_beefy: false,
|
||||||
jaeger_agent: None,
|
jaeger_agent: None,
|
||||||
telemetry_worker_handle,
|
telemetry_worker_handle,
|
||||||
|
|
||||||
|
|||||||
@@ -408,10 +408,6 @@ impl CliConfiguration<Self> for RelayChainCli {
|
|||||||
self.base.base.disable_grandpa()
|
self.base.base.disable_grandpa()
|
||||||
}
|
}
|
||||||
|
|
||||||
fn disable_beefy(&self) -> Result<bool> {
|
|
||||||
self.base.base.disable_beefy()
|
|
||||||
}
|
|
||||||
|
|
||||||
fn max_runtime_instances(&self) -> Result<Option<usize>> {
|
fn max_runtime_instances(&self) -> Result<Option<usize>> {
|
||||||
self.base.base.max_runtime_instances()
|
self.base.base.max_runtime_instances()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1064,10 +1064,6 @@ impl CliConfiguration<Self> for RelayChainCli {
|
|||||||
self.base.base.disable_grandpa()
|
self.base.base.disable_grandpa()
|
||||||
}
|
}
|
||||||
|
|
||||||
fn disable_beefy(&self) -> Result<bool> {
|
|
||||||
self.base.base.disable_beefy()
|
|
||||||
}
|
|
||||||
|
|
||||||
fn max_runtime_instances(&self) -> Result<Option<usize>> {
|
fn max_runtime_instances(&self) -> Result<Option<usize>> {
|
||||||
self.base.base.max_runtime_instances()
|
self.base.base.max_runtime_instances()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -220,10 +220,6 @@ impl CliConfiguration<Self> for RelayChainCli {
|
|||||||
self.base.base.disable_grandpa()
|
self.base.base.disable_grandpa()
|
||||||
}
|
}
|
||||||
|
|
||||||
fn disable_beefy(&self) -> CliResult<bool> {
|
|
||||||
self.base.base.disable_beefy()
|
|
||||||
}
|
|
||||||
|
|
||||||
fn max_runtime_instances(&self) -> CliResult<Option<usize>> {
|
fn max_runtime_instances(&self) -> CliResult<Option<usize>> {
|
||||||
self.base.base.max_runtime_instances()
|
self.base.base.max_runtime_instances()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -773,7 +773,6 @@ pub fn node_config(
|
|||||||
offchain_worker: OffchainWorkerConfig { enabled: true, indexing_enabled: false },
|
offchain_worker: OffchainWorkerConfig { enabled: true, indexing_enabled: false },
|
||||||
force_authoring: false,
|
force_authoring: false,
|
||||||
disable_grandpa: false,
|
disable_grandpa: false,
|
||||||
disable_beefy: true,
|
|
||||||
dev_key_seed: Some(key_seed),
|
dev_key_seed: Some(key_seed),
|
||||||
tracing_targets: None,
|
tracing_targets: None,
|
||||||
tracing_receiver: Default::default(),
|
tracing_receiver: Default::default(),
|
||||||
|
|||||||
Reference in New Issue
Block a user