diff --git a/tools/explorer/README.md b/tools/explorer/README.md index 92e8cc9d9b..8fa938b9e8 100644 --- a/tools/explorer/README.md +++ b/tools/explorer/README.md @@ -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``. diff --git a/tools/explorer/src/main/kotlin/net/corda/explorer/ExplorerSimulation.kt b/tools/explorer/src/main/kotlin/net/corda/explorer/ExplorerSimulation.kt index 1a01b0a293..4f104ee301 100644 --- a/tools/explorer/src/main/kotlin/net/corda/explorer/ExplorerSimulation.kt +++ b/tools/explorer/src/main/kotlin/net/corda/explorer/ExplorerSimulation.kt @@ -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) )) {