Update Substrate & Polkadot (#454)

This commit is contained in:
Bastian Köcher
2021-05-31 07:54:31 +02:00
committed by GitHub
parent d5b802ce28
commit 5b2bc585de
3 changed files with 288 additions and 248 deletions
+286 -244
View File
File diff suppressed because it is too large Load Diff
+1 -2
View File
@@ -244,7 +244,7 @@ where
let transaction_pool = params.transaction_pool.clone();
let mut task_manager = params.task_manager;
let import_queue = cumulus_client_service::SharedImportQueue::new(params.import_queue);
let (network, network_status_sinks, system_rpc_tx, start_network) =
let (network, system_rpc_tx, start_network) =
sc_service::build_network(sc_service::BuildNetworkParams {
config: &parachain_config,
client: client.clone(),
@@ -269,7 +269,6 @@ where
keystore: params.keystore_container.sync_keystore(),
backend: backend.clone(),
network: network.clone(),
network_status_sinks,
system_rpc_tx,
telemetry: telemetry.as_mut(),
})?;
+1 -2
View File
@@ -204,7 +204,7 @@ where
let prometheus_registry = parachain_config.prometheus_registry().cloned();
let import_queue = cumulus_client_service::SharedImportQueue::new(params.import_queue);
let (network, network_status_sinks, system_rpc_tx, start_network) =
let (network, system_rpc_tx, start_network) =
sc_service::build_network(sc_service::BuildNetworkParams {
config: &parachain_config,
client: client.clone(),
@@ -232,7 +232,6 @@ where
keystore: params.keystore_container.sync_keystore(),
backend,
network: network.clone(),
network_status_sinks,
system_rpc_tx,
telemetry: None,
})?;