Skip to content

Commit 7cc4101

Browse files
authored
Update README.md
1 parent c829684 commit 7cc4101

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Basic/yo-cordapp/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ In corda, we can use abstractions to accomplish the same thing.
1313
We define a state (the yo to be shared), define a contract (the way to make sure the yo is legit), and define the flow (the control flow of our cordapp).
1414

1515
### States
16-
We define a [Yo as a state](https://github.com/corda/samples-java/blob/master/basic-cordapps/yo-cordapp/contracts/src/main/java/net/corda/examples/yo/states/YoState.java#L31-L35), or a corda fact.
16+
We define a [Yo as a state](./contracts/src/main/java/net/corda/examples/yo/states/YoState.java#L31-L35), or a corda fact.
1717

1818
```java
1919
public YoState(Party origin, Party target) {
@@ -25,7 +25,7 @@ We define a [Yo as a state](https://github.com/corda/samples-java/blob/master/ba
2525

2626

2727
### Contracts
28-
We define [the "Yo Social Contract"](https://github.com/corda/samples-java/blob/master/basic-cordapps/yo-cordapp/contracts/src/main/java/net/corda/examples/yo/contracts/YoContract.java#L21-L32), which, in this case, verifies some basic assumptions about a Yo.
28+
We define [the "Yo Social Contract"](./contracts/src/main/java/net/corda/examples/yo/contracts/YoContract.java#L21-L32), which, in this case, verifies some basic assumptions about a Yo.
2929

3030
```java
3131
@Override
@@ -45,7 +45,7 @@ We define [the "Yo Social Contract"](https://github.com/corda/samples-java/blob/
4545

4646

4747
### Flows
48-
And then we send the Yo [within a flow](https://github.com/corda/samples-java/blob/master/basic-cordapps/yo-cordapp/workflows/src/main/java/net/corda/examples/yo/flows/YoFlow.java#L59-L64).
48+
And then we send the Yo [within a flow](./workflows/src/main/java/net/corda/examples/yo/flows/YoFlow.java#L59-L64).
4949

5050
```java
5151
Party me = getOurIdentity();

0 commit comments

Comments
 (0)