From 77ad54e4bc322f4147448b40077da14091da4b38 Mon Sep 17 00:00:00 2001 From: Guillaume Thiolliere Date: Tue, 28 Sep 2021 19:38:00 +0200 Subject: [PATCH] fix master (#3955) --- polkadot/node/service/src/overseer.rs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/polkadot/node/service/src/overseer.rs b/polkadot/node/service/src/overseer.rs index c00b888e21..6cdc8eaf24 100644 --- a/polkadot/node/service/src/overseer.rs +++ b/polkadot/node/service/src/overseer.rs @@ -313,7 +313,7 @@ pub fn prepared_overseer_builder<'a, Spawner, RuntimeClient>( CollatorProtocolSubsystem, ApprovalDistributionSubsystem, ApprovalVotingSubsystem, - GossipSupportSubsystem, + GossipSupportSubsystem, DisputeCoordinatorSubsystem, DisputeParticipationSubsystem, DisputeDistributionSubsystem, @@ -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,