subsystem for issuing background connection requests (#2538)

* initial subsystem for issuing connection requests

* finish the initial impl

* integrate with the overseer

* rename to gossip-support

* fix renamings leftover

* remove run_inner

* fix compilation

* random subset of sqrt
This commit is contained in:
Andronik Ordian
2021-03-02 11:40:06 +01:00
committed by GitHub
parent 5169155f94
commit 4c1de66d5d
9 changed files with 317 additions and 30 deletions
+2
View File
@@ -418,6 +418,7 @@ where
use polkadot_availability_recovery::AvailabilityRecoverySubsystem;
use polkadot_approval_distribution::ApprovalDistribution as ApprovalDistributionSubsystem;
use polkadot_node_core_approval_voting::ApprovalVotingSubsystem;
use polkadot_gossip_support::GossipSupport as GossipSupportSubsystem;
let all_subsystems = AllSubsystems {
availability_distribution: AvailabilityDistributionSubsystem::new(
@@ -497,6 +498,7 @@ where
approval_voting_config,
keystore.clone(),
)?,
gossip_support: GossipSupportSubsystem::new(),
};
Overseer::new(