mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-22 20:45:40 +00:00
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:
@@ -83,6 +83,7 @@ polkadot-availability-bitfield-distribution = { path = "../network/bitfield-dist
|
||||
polkadot-availability-distribution = { path = "../network/availability-distribution", optional = true }
|
||||
polkadot-availability-recovery = { path = "../network/availability-recovery", optional = true }
|
||||
polkadot-collator-protocol = { path = "../network/collator-protocol", optional = true }
|
||||
polkadot-gossip-support = { path = "../network/gossip-support", optional = true }
|
||||
polkadot-network-bridge = { path = "../network/bridge", optional = true }
|
||||
polkadot-node-collation-generation = { path = "../collation-generation", optional = true }
|
||||
polkadot-node-core-av-store = { path = "../core/av-store", optional = true }
|
||||
@@ -128,6 +129,7 @@ real-overseer = [
|
||||
"polkadot-availability-distribution",
|
||||
"polkadot-availability-recovery",
|
||||
"polkadot-collator-protocol",
|
||||
"polkadot-gossip-support",
|
||||
"polkadot-network-bridge",
|
||||
"polkadot-node-collation-generation",
|
||||
"polkadot-node-core-backing",
|
||||
|
||||
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user