fix master (#3955)

This commit is contained in:
Guillaume Thiolliere
2021-09-28 19:38:00 +02:00
committed by GitHub
parent f29b6db6e4
commit 77ad54e4bc
+5 -2
View File
@@ -313,7 +313,7 @@ pub fn prepared_overseer_builder<'a, Spawner, RuntimeClient>(
CollatorProtocolSubsystem,
ApprovalDistributionSubsystem,
ApprovalVotingSubsystem,
GossipSupportSubsystem,
GossipSupportSubsystem<AuthorityDiscoveryService>,
DisputeCoordinatorSubsystem,
DisputeParticipationSubsystem,
DisputeDistributionSubsystem<AuthorityDiscoveryService>,
@@ -405,7 +405,10 @@ where
Box::new(network_service.clone()),
Metrics::register(registry)?,
))
.gossip_support(GossipSupportSubsystem::new(keystore.clone()))
.gossip_support(GossipSupportSubsystem::new(
keystore.clone(),
authority_discovery_service.clone(),
))
.dispute_coordinator(DisputeCoordinatorSubsystem::new(
parachains_db.clone(),
dispute_coordinator_config,