|
|
@ -75,6 +75,7 @@ import org.hyperledger.besu.plugin.services.TransactionSelectionService; |
|
|
|
import org.hyperledger.besu.plugin.services.TransactionSimulationService; |
|
|
|
import org.hyperledger.besu.plugin.services.TransactionSimulationService; |
|
|
|
import org.hyperledger.besu.plugin.services.metrics.MetricCategoryRegistry; |
|
|
|
import org.hyperledger.besu.plugin.services.metrics.MetricCategoryRegistry; |
|
|
|
import org.hyperledger.besu.plugin.services.storage.rocksdb.RocksDBPlugin; |
|
|
|
import org.hyperledger.besu.plugin.services.storage.rocksdb.RocksDBPlugin; |
|
|
|
|
|
|
|
import org.hyperledger.besu.plugin.services.transactionpool.TransactionPoolService; |
|
|
|
import org.hyperledger.besu.services.BesuConfigurationImpl; |
|
|
|
import org.hyperledger.besu.services.BesuConfigurationImpl; |
|
|
|
import org.hyperledger.besu.services.BesuEventsImpl; |
|
|
|
import org.hyperledger.besu.services.BesuEventsImpl; |
|
|
|
import org.hyperledger.besu.services.BesuPluginContextImpl; |
|
|
|
import org.hyperledger.besu.services.BesuPluginContextImpl; |
|
|
@ -85,6 +86,7 @@ import org.hyperledger.besu.services.PrivacyPluginServiceImpl; |
|
|
|
import org.hyperledger.besu.services.RpcEndpointServiceImpl; |
|
|
|
import org.hyperledger.besu.services.RpcEndpointServiceImpl; |
|
|
|
import org.hyperledger.besu.services.SecurityModuleServiceImpl; |
|
|
|
import org.hyperledger.besu.services.SecurityModuleServiceImpl; |
|
|
|
import org.hyperledger.besu.services.StorageServiceImpl; |
|
|
|
import org.hyperledger.besu.services.StorageServiceImpl; |
|
|
|
|
|
|
|
import org.hyperledger.besu.services.TransactionPoolServiceImpl; |
|
|
|
import org.hyperledger.besu.services.TransactionPoolValidatorServiceImpl; |
|
|
|
import org.hyperledger.besu.services.TransactionPoolValidatorServiceImpl; |
|
|
|
import org.hyperledger.besu.services.TransactionSelectionServiceImpl; |
|
|
|
import org.hyperledger.besu.services.TransactionSelectionServiceImpl; |
|
|
|
import org.hyperledger.besu.services.TransactionSimulationServiceImpl; |
|
|
|
import org.hyperledger.besu.services.TransactionSimulationServiceImpl; |
|
|
@ -215,6 +217,9 @@ public class ThreadBesuNodeRunner implements BesuNodeRunner { |
|
|
|
besuController.getTransactionPool(), |
|
|
|
besuController.getTransactionPool(), |
|
|
|
besuController.getSyncState(), |
|
|
|
besuController.getSyncState(), |
|
|
|
besuController.getProtocolContext().getBadBlockManager())); |
|
|
|
besuController.getProtocolContext().getBadBlockManager())); |
|
|
|
|
|
|
|
besuPluginContext.addService( |
|
|
|
|
|
|
|
TransactionPoolService.class, |
|
|
|
|
|
|
|
new TransactionPoolServiceImpl(besuController.getTransactionPool())); |
|
|
|
|
|
|
|
|
|
|
|
component.rpcEndpointService().init(runner.getInProcessRpcMethods()); |
|
|
|
component.rpcEndpointService().init(runner.getInProcessRpcMethods()); |
|
|
|
|
|
|
|
|
|
|
|