CORDA-1127 - updated comments to follow current port layout (#2669)

This commit is contained in:
Andrzej Grzesik 2018-02-28 14:41:08 +00:00
parent 577033441a
commit 8565fbd47f
2 changed files with 7 additions and 7 deletions

View File

@ -34,11 +34,11 @@ The Participant nodes are only able to spend cash (eg. move cash).
**These Corda nodes will be created on the following port on localhost.**
* Notary -> 20003 (Does not accept logins)
* Alice -> 20006
* Bob -> 20009
* UK Bank Plc -> 20012 (*Issuer node*)
* USA Bank Corp -> 20015 (*Issuer node*)
* Notary -> 20005 (Does not accept logins)
* UK Bank Plc -> 20011 (*Issuer node*)
* USA Bank Corp -> 20008 (*Issuer node*)
* Alice -> 20017
* Bob -> 20014
Explorer login credentials to the Issuer nodes are defaulted to ``manager`` and ``test``.
Explorer login credentials to the Participants nodes are defaulted to ``user1`` and ``test``.

View File

@ -118,8 +118,8 @@ class Main : App(MainView::class) {
}
/**
* This main method will starts 5 nodes (Notary, Alice, Bob, UK Bank and USA Bank) locally for UI testing,
* they will be on localhost ports 20003, 20006, 20009, 20012 and 20015 respectively.
* This main method will starts 5 nodes (Notary, USA Bank, UK Bank, Bob and Alice) locally for UI testing,
* they will be on localhost ports 20005, 20008, 20011, 20014 and 20017 respectively.
*
* The simulation start with pre-allocating chunks of cash to each of the party in 2 currencies (USD, GBP), then it enter a loop to generate random events.
* On each iteration, the issuers will execute a Cash Issue or Cash Exit flow (at a 9:1 ratio) and a random party will execute a move of cash to another random party.