Companion PR for #7951 (#2336)

* Adapt code to changes in substrate

* WIP

* "Update Substrate"

Co-authored-by: parity-processbot <>
This commit is contained in:
Cecile Tonglet
2021-01-29 13:24:04 +01:00
committed by GitHub
parent c38ab3c331
commit 6efeb1ee13
3 changed files with 144 additions and 146 deletions
+139 -139
View File
File diff suppressed because it is too large Load Diff
+4 -7
View File
@@ -216,7 +216,6 @@ fn new_partial<RuntimeApi, Executor>(config: &mut Configuration, jaeger_agent: O
babe::BabeLink<Block>
),
grandpa::SharedVoterState,
Option<telemetry::TelemetrySpan>,
)
>,
Error
@@ -232,7 +231,7 @@ fn new_partial<RuntimeApi, Executor>(config: &mut Configuration, jaeger_agent: O
let inherent_data_providers = inherents::InherentDataProviders::new();
let (client, backend, keystore_container, task_manager, telemetry_span) =
let (client, backend, keystore_container, task_manager) =
service::new_full_parts::<Block, RuntimeApi, Executor>(&config)?;
let client = Arc::new(client);
@@ -336,7 +335,7 @@ fn new_partial<RuntimeApi, Executor>(config: &mut Configuration, jaeger_agent: O
import_queue,
transaction_pool,
inherent_data_providers,
other: (rpc_extensions_builder, import_setup, rpc_setup, telemetry_span)
other: (rpc_extensions_builder, import_setup, rpc_setup)
})
}
@@ -566,7 +565,7 @@ pub fn new_full<RuntimeApi, Executor>(
import_queue,
transaction_pool,
inherent_data_providers,
other: (rpc_extensions_builder, import_setup, rpc_setup, telemetry_span)
other: (rpc_extensions_builder, import_setup, rpc_setup)
} = new_partial::<RuntimeApi, Executor>(&mut config, jaeger_agent)?;
let prometheus_registry = config.prometheus_registry().cloned();
@@ -631,7 +630,6 @@ pub fn new_full<RuntimeApi, Executor>(
remote_blockchain: None,
network_status_sinks: network_status_sinks.clone(),
system_rpc_tx,
telemetry_span,
})?;
let (block_import, link_half, babe_link) = import_setup;
@@ -844,7 +842,7 @@ fn new_light<Runtime, Dispatch>(mut config: Configuration) -> Result<(
set_prometheus_registry(&mut config)?;
use sc_client_api::backend::RemoteBackend;
let (client, backend, keystore_container, mut task_manager, on_demand, telemetry_span) =
let (client, backend, keystore_container, mut task_manager, on_demand) =
service::new_light_parts::<Block, Runtime, Dispatch>(&config)?;
let select_chain = sc_consensus::LongestChain::new(backend.clone());
@@ -928,7 +926,6 @@ fn new_light<Runtime, Dispatch>(mut config: Configuration) -> Result<(
network,
network_status_sinks,
system_rpc_tx,
telemetry_span,
})?;
network_starter.start_network();
+1
View File
@@ -199,6 +199,7 @@ pub fn node_config(
informant_output_format: Default::default(),
disable_log_reloading: false,
telemetry_handle: None,
telemetry_span: None,
}
}