Fixed copy names in Driver.

This commit is contained in:
sollecitom 2018-05-14 16:40:09 +01:00
parent abc630fca4
commit 61245c9675

View File

@ -319,18 +319,18 @@ data class DriverParameters(
jmxPolicy: JmxPolicy, jmxPolicy: JmxPolicy,
networkParameters: NetworkParameters networkParameters: NetworkParameters
) = this.copy( ) = this.copy(
isDebug, isDebug = isDebug,
driverDirectory, driverDirectory = driverDirectory,
portAllocation, portAllocation = portAllocation,
debugPortAllocation, debugPortAllocation = debugPortAllocation,
systemProperties, systemProperties = systemProperties,
useTestClock, useTestClock = useTestClock,
true, initialiseSerialization = true,
startNodesInProcess, startNodesInProcess = startNodesInProcess,
waitForAllNodesToFinish, waitForAllNodesToFinish = waitForAllNodesToFinish,
notarySpecs, notarySpecs = notarySpecs,
extraCordappPackagesToScan, extraCordappPackagesToScan = extraCordappPackagesToScan,
jmxPolicy, jmxPolicy = jmxPolicy,
networkParameters, emptyMap() networkParameters = networkParameters, notaryCustomOverrides = emptyMap()
) )
} }