spoke too soon

Signed-off-by: Ed Prosser <edward.prosser@r3.com>
This commit is contained in:
Ed Prosser 2019-07-03 12:07:48 +01:00 committed by Mike Hearn
parent 2f608258f6
commit 0a9ab5a763
2 changed files with 7 additions and 3 deletions

View File

@ -463,7 +463,7 @@ The Gradle build files must be updated to change how the nodes are deployed. (*
Step Six: Deploying your CorDapp locally
----------------------------------------
Now that the the CorDapp code has been completed and the build file updated, the CorDapp can be deployed.
Now that the CorDapp code has been completed and the build file updated, the CorDapp can be deployed.
1. Open a terminal and navigate to the root directory of the project.

View File

@ -14,9 +14,13 @@ The first step is to deploy the CorDapp to nodes running locally.
1. Navigate to the root directory of the example CorDapp.
2. Deploy the CorDapp by running the following command: ``./gradlew deployNodes``
2. To deploy the nodes on Windows run the following command: ``gradlew clean deployNodes``
3. To best understand the deployment process, there are several perspectives it is helpful to see. Run the following command: ``build/nodes/runnodes``
To deploy the nodes on Mac or Linux run the following command: ``./gradlew clean deployNodes``
3. To best understand the deployment process, there are several perspectives it is helpful to see. On Windows run the following command: ``build\nodes\runnodes``
On Mac/Linux run the following command: ``build/nodes/runnodes``
This command opens four terminal windows: the notary, and a node each for PartyA, PartyB, and PartyC. A notary is a validation service that prevents double-spending, enforces timestamping, and may also validate transactions. For more information on notaries, see the `notary documentation <./key-concepts-notaries.html>`_.