use of tech.pegasys.teku.statetransition.OperationsReOrgManager in project teku by ConsenSys.
the class BeaconChainController method initOperationsReOrgManager.
protected void initOperationsReOrgManager() {
LOG.debug("BeaconChainController.initOperationsReOrgManager()");
OperationsReOrgManager operationsReOrgManager = new OperationsReOrgManager(proposerSlashingPool, attesterSlashingPool, voluntaryExitPool, attestationPool, attestationManager, recentChainData);
eventChannels.subscribe(ChainHeadChannel.class, operationsReOrgManager);
}
Aggregations