Search in sources :

Example 1 with BlockOperationSelectorFactory

use of tech.pegasys.teku.validator.coordinator.BlockOperationSelectorFactory in project teku by ConsenSys.

the class BeaconChainController method initValidatorApiHandler.

public void initValidatorApiHandler() {
    LOG.debug("BeaconChainController.initValidatorApiHandler()");
    final BlockFactory blockFactory = new BlockFactory(spec, new BlockOperationSelectorFactory(spec, attestationPool, attesterSlashingPool, proposerSlashingPool, voluntaryExitPool, syncCommitteeContributionPool, depositProvider, eth1DataCache, VersionProvider.getDefaultGraffiti(), forkChoiceNotifier, executionEngine));
    SyncCommitteeSubscriptionManager syncCommitteeSubscriptionManager = beaconConfig.p2pConfig().isSubscribeAllSubnetsEnabled() ? new AllSyncCommitteeSubscriptions(p2pNetwork, spec) : new SyncCommitteeSubscriptionManager(p2pNetwork);
    final BlockImportChannel blockImportChannel = eventChannels.getPublisher(BlockImportChannel.class, beaconAsyncRunner);
    final BlockGossipChannel blockGossipChannel = eventChannels.getPublisher(BlockGossipChannel.class);
    final ValidatorApiHandler validatorApiHandler = new ValidatorApiHandler(new ChainDataProvider(spec, recentChainData, combinedChainDataClient), combinedChainDataClient, syncService, blockFactory, blockImportChannel, blockGossipChannel, attestationPool, attestationManager, attestationTopicSubscriber, activeValidatorTracker, DutyMetrics.create(metricsSystem, timeProvider, recentChainData, spec), performanceTracker, spec, forkChoiceTrigger, forkChoiceNotifier, syncCommitteeMessagePool, syncCommitteeContributionPool, syncCommitteeSubscriptionManager);
    eventChannels.subscribe(SlotEventsChannel.class, activeValidatorTracker).subscribeMultithreaded(ValidatorApiChannel.class, validatorApiHandler, beaconConfig.beaconRestApiConfig().getValidatorThreads());
    // so don't subscribe.
    if (!beaconConfig.p2pConfig().isSubscribeAllSubnetsEnabled()) {
        eventChannels.subscribe(SlotEventsChannel.class, attestationTopicSubscriber).subscribe(SlotEventsChannel.class, syncCommitteeSubscriptionManager);
    }
}
Also used : ValidatorApiHandler(tech.pegasys.teku.validator.coordinator.ValidatorApiHandler) AllSyncCommitteeSubscriptions(tech.pegasys.teku.networking.eth2.gossip.subnets.AllSyncCommitteeSubscriptions) BlockGossipChannel(tech.pegasys.teku.networking.eth2.gossip.BlockGossipChannel) SlotEventsChannel(tech.pegasys.teku.ethereum.events.SlotEventsChannel) BlockFactory(tech.pegasys.teku.validator.coordinator.BlockFactory) BlockOperationSelectorFactory(tech.pegasys.teku.validator.coordinator.BlockOperationSelectorFactory) ChainDataProvider(tech.pegasys.teku.api.ChainDataProvider) SyncCommitteeSubscriptionManager(tech.pegasys.teku.networking.eth2.gossip.subnets.SyncCommitteeSubscriptionManager) BlockImportChannel(tech.pegasys.teku.statetransition.block.BlockImportChannel)

Aggregations

ChainDataProvider (tech.pegasys.teku.api.ChainDataProvider)1 SlotEventsChannel (tech.pegasys.teku.ethereum.events.SlotEventsChannel)1 BlockGossipChannel (tech.pegasys.teku.networking.eth2.gossip.BlockGossipChannel)1 AllSyncCommitteeSubscriptions (tech.pegasys.teku.networking.eth2.gossip.subnets.AllSyncCommitteeSubscriptions)1 SyncCommitteeSubscriptionManager (tech.pegasys.teku.networking.eth2.gossip.subnets.SyncCommitteeSubscriptionManager)1 BlockImportChannel (tech.pegasys.teku.statetransition.block.BlockImportChannel)1 BlockFactory (tech.pegasys.teku.validator.coordinator.BlockFactory)1 BlockOperationSelectorFactory (tech.pegasys.teku.validator.coordinator.BlockOperationSelectorFactory)1 ValidatorApiHandler (tech.pegasys.teku.validator.coordinator.ValidatorApiHandler)1