diff --git a/node/src/main/kotlin/com/r3corda/node/internal/AbstractNode.kt b/node/src/main/kotlin/com/r3corda/node/internal/AbstractNode.kt index fe650218da..ceaf8f9650 100644 --- a/node/src/main/kotlin/com/r3corda/node/internal/AbstractNode.kt +++ b/node/src/main/kotlin/com/r3corda/node/internal/AbstractNode.kt @@ -113,7 +113,7 @@ abstract class AbstractNode(val dir: Path, val configuration: NodeConfiguration, private set /** Completes once the node has successfully registered with the network map service */ - val networkMapRegistrationSettableFuture: SettableFuture = SettableFuture.create() + private val networkMapRegistrationSettableFuture: SettableFuture = SettableFuture.create() val networkMapRegistrationFuture: ListenableFuture = networkMapRegistrationSettableFuture /** Set to true once [start] has been successfully called. */