ENT-2133 Explorer demo nodes fix (#1091) (#1098)

This commit is contained in:
Christian Sailer 2018-06-27 16:09:49 +01:00 committed by GitHub
parent 72a29101c3
commit 20c53a5a45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 7 deletions

View File

@ -32,13 +32,16 @@ The Participant nodes are only able to spend cash (eg. move cash).
./gradlew tools:explorer:runDemoNodes
**These Corda nodes will be created on the following port on localhost.**
**These Corda nodes will be created on localhost:**
* Notary -> 20005 (Does not accept logins)
* UK Bank Plc -> 20011 (*Issuer node*)
* USA Bank Corp -> 20008 (*Issuer node*)
* Alice -> 20017
* Bob -> 20014
* Notary (Does not accept logins)
* UK Bank Plc (*Issuer node*)
* USA Bank Corp (*Issuer node*)
* Alice
* Bob
Check the gradle output for the ports of the nodes - when they are ready to be used, a list of started nodes along
with their respective RPC ports will be printed.
Explorer login credentials to the Issuer nodes are defaulted to ``manager`` and ``test``.
Explorer login credentials to the Participant nodes are defaulted to ``user1`` and ``test``.

View File

@ -82,7 +82,7 @@ class ExplorerSimulation(private val options: OptionSet) {
val portAllocation = PortAllocation.Incremental(20000)
driver(DriverParameters(
portAllocation = portAllocation,
extraCordappPackagesToScan = packagesOfClasses(CashPaymentFlow::class, IOUFlow::class, ObtainMembershipListContentFlow::class),
extraCordappPackagesToScan = packagesOfClasses(CashIssueFlow::class, Cash::class, IOUFlow::class, ObtainMembershipListContentFlow::class),
waitForAllNodesToFinish = true,
jmxPolicy = JmxPolicy(true)
)) {