Remove collating_for argument from service (#1802)

The collator is now enabled in a different way and we don't require this
argument anymore.
This commit is contained in:
Bastian Köcher
2020-10-09 16:55:26 +02:00
committed by GitHub
parent e62b300f47
commit d985b9aa02
3 changed files with 4 additions and 17 deletions
+1 -2
View File
@@ -148,7 +148,6 @@ pub fn run() -> Result<()> {
Role::Light => service::build_light(config).map(|(task_manager, _)| task_manager),
_ => service::build_full(
config,
None,
authority_discovery_enabled,
grandpa_pause,
).map(|full| full.task_manager),
@@ -189,7 +188,7 @@ pub fn run() -> Result<()> {
network_status_sinks,
..
} = service::build_full(
config, None, authority_discovery_enabled, grandpa_pause,
config, authority_discovery_enabled, grandpa_pause,
)?;
let client = Arc::new(client);