You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This CorDapp shows how multi-party negotiation is handled on the Corda ledger, in the absence of an API for user
4
4
interaction.
@@ -16,21 +16,20 @@ accept or modify the proposal, this attempt will be rejected automatically at th
16
16
17
17
### Flows
18
18
19
-
We start with the proposal flow implemented in [ProposalFlow.java](./workflows/src/main/java/negotiation/flows/ProposalFlow.java)
19
+
We start with the proposal flow implemented in `ProposalFlow.java`.
20
20
21
21
22
-
The modification of the proposal is implemented in [ModificationFlow.java](./workflows/src/main/java/negotiation/flows/ModificationFlow.java#L42-L49).
22
+
The modification of the proposal is implemented in `ModificationFlow.java`.
23
23
24
24
25
-
In the [AcceptanceFlow.java](./workflows/src/main/java/negotiation/flows/AcceptanceFlow.java#L42-L75), we receive the modified ProposalState and it's converted into a TradeState.
25
+
In the `AcceptanceFlow.java`, we receive the modified ProposalState and it's converted into a TradeState.
26
26
27
27
28
28
29
29
## Usage
30
+
## Pre-Requisites
31
+
For development environment setup, please refer to: [Setup Guide](https://docs.corda.net/getting-set-up.html).
0 commit comments