Skip to content

Commit

Permalink
CORDA-1861: Remove default value to make createUnstartedNode() unambi…
Browse files Browse the repository at this point in the history
…guous. (corda#3729)
  • Loading branch information
chrisr3 authored Jul 31, 2018
1 parent dfafdbc commit b7f7dcc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ open class MockNetwork(
forcedID: Int? = null,
entropyRoot: BigInteger = BigInteger.valueOf(random63BitValue()),
configOverrides: (NodeConfiguration) -> Any? = {},
additionalCordapps: Set<TestCorDapp> = emptySet()): UnstartedMockNode {
additionalCordapps: Set<TestCorDapp>): UnstartedMockNode {
val parameters = MockNodeParameters(forcedID, legalName, entropyRoot, configOverrides, additionalCordapps)
return UnstartedMockNode.create(internalMockNetwork.createUnstartedNode(InternalMockNodeParameters(parameters)))
}
Expand Down

0 comments on commit b7f7dcc

Please sign in to comment.