CORDA-654 Remaining key constants (#2226)

This commit is contained in:
Andrzej Cichocki
2017-12-12 18:03:06 +00:00
committed by GitHub
parent 42782f8890
commit 905c8252a6
113 changed files with 712 additions and 617 deletions

View File

@ -38,8 +38,8 @@ class IntegrationTestingTutorial {
invokeRpc(CordaRPCOps::networkMapFeed)
))
val (alice, bob) = listOf(
startNode(providedName = ALICE.name, rpcUsers = listOf(aliceUser)),
startNode(providedName = BOB.name, rpcUsers = listOf(bobUser))
startNode(providedName = ALICE_NAME, rpcUsers = listOf(aliceUser)),
startNode(providedName = BOB_NAME, rpcUsers = listOf(bobUser))
).transpose().getOrThrow()
// END 1