From ffc9bcd6bb2c6cc4ce9bb85d2cd466c6c8943841 Mon Sep 17 00:00:00 2001 From: Anthony Keenan Date: Thu, 25 Oct 2018 11:51:37 +0100 Subject: [PATCH] More compilation errors --- .../main/kotlin/net/corda/flowworker/FlowWorkerServiceHub.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/experimental/flow-worker/src/main/kotlin/net/corda/flowworker/FlowWorkerServiceHub.kt b/experimental/flow-worker/src/main/kotlin/net/corda/flowworker/FlowWorkerServiceHub.kt index d40a2949bc..e51433356e 100644 --- a/experimental/flow-worker/src/main/kotlin/net/corda/flowworker/FlowWorkerServiceHub.kt +++ b/experimental/flow-worker/src/main/kotlin/net/corda/flowworker/FlowWorkerServiceHub.kt @@ -137,7 +137,7 @@ class FlowWorkerServiceHub(override val configuration: NodeConfiguration, overri @Suppress("LeakingThis") override val validatedTransactions: WritableTransactionStorage = DBTransactionStorage(database, cacheFactory).tokenize() override val attachments = NodeAttachmentService(metricRegistry, cacheFactory, database).tokenize() - override val cordappProvider = CordappProviderImpl(cordappLoader, CordappConfigFileProvider(), attachments).tokenize() + override val cordappProvider = CordappProviderImpl(cordappLoader, CordappConfigFileProvider(emptyList()), attachments).tokenize() @Suppress("LeakingThis") override val keyManagementService = PersistentKeyManagementService(cacheFactory, identityService, database).tokenize() private val servicesForResolution = ServicesForResolutionImpl(identityService, attachments, cordappProvider, validatedTransactions)