From 046209ea0db39ba0bed7a733c5c8b95616f4a9b0 Mon Sep 17 00:00:00 2001 From: "rick.parker" Date: Thu, 9 Aug 2018 10:27:58 +0100 Subject: [PATCH] Fix compilation error --- .../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 edc4a1cdd2..fc6be347ec 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 @@ -97,7 +97,7 @@ class FlowWorkerServiceHub(override val configuration: NodeConfiguration, overri identityService.database = database } - private val persistentNetworkMapCache = PersistentNetworkMapCache(database) + private val persistentNetworkMapCache = PersistentNetworkMapCache(database, myInfo.legalIdentities[0].name) override val networkMapCache = NetworkMapCacheImpl(persistentNetworkMapCache, identityService, database).tokenize() private val checkpointStorage = DBCheckpointStorage() @Suppress("LeakingThis")