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
Copy file name to clipboardExpand all lines: Tokens/fungiblehousetoken/README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ There are a few flows that enable this project.
16
16
We will create a resource (in this case a house), and then issue tokens for that resource, and then transfer those tokens.
17
17
18
18
19
-
We create the representation of a house, within [CreateHouseTokenFlow.java](https://github.com/corda/samples-java/blob/f11f681f0efd5314426d7e674388e54c348f1a65/token-cordapps/fungiblehousetoken/workflows/src/main/java/net/corda/examples/tokenizedhouse/flows/RealEstateEvolvableFungibleTokenFlow.java#L47-L61).
19
+
We create the representation of a house, within [CreateHouseTokenFlow.java](./workflows/src/main/java/net/corda/examples/tokenizedhouse/flows/RealEstateEvolvableFungibleTokenFlow.java#L47-L61).
20
20
21
21
22
22
```java
@@ -37,7 +37,7 @@ public SignedTransaction call() throws FlowException {
37
37
38
38
```
39
39
40
-
We issue tokens [IssueHouseTokenFlow](https://github.com/corda/samples-java/blob/f11f681f0efd5314426d7e674388e54c348f1a65/token-cordapps/fungiblehousetoken/workflows/src/main/java/net/corda/examples/tokenizedhouse/flows/RealEstateEvolvableFungibleTokenFlow.java#L81-L105)
40
+
We issue tokens [IssueHouseTokenFlow](./workflows/src/main/java/net/corda/examples/tokenizedhouse/flows/RealEstateEvolvableFungibleTokenFlow.java#L81-L105)
@@ -68,7 +68,7 @@ public SignedTransaction call() throws FlowException {
68
68
69
69
```
70
70
71
-
We then move the house token. [MoveHouseTokenFlow](https://github.com/corda/samples-java/blob/f11f681f0efd5314426d7e674388e54c348f1a65/token-cordapps/fungiblehousetoken/workflows/src/main/java/net/corda/examples/tokenizedhouse/flows/RealEstateEvolvableFungibleTokenFlow.java#L127-L146)
71
+
We then move the house token. [MoveHouseTokenFlow](./workflows/src/main/java/net/corda/examples/tokenizedhouse/flows/RealEstateEvolvableFungibleTokenFlow.java#L127-L146)
@@ -93,7 +93,7 @@ public SignedTransaction call() throws FlowException {
93
93
}
94
94
```
95
95
96
-
You can find the redemption code commented out [here](https://github.com/corda/samples-java/blob/f11f681f0efd5314426d7e674388e54c348f1a65/token-cordapps/fungiblehousetoken/workflows/src/main/java/net/corda/examples/tokenizedhouse/flows/RealEstateEvolvableFungibleTokenFlow.java#L173)
96
+
You can find the redemption code commented out [here](./workflows/src/main/java/net/corda/examples/tokenizedhouse/flows/RealEstateEvolvableFungibleTokenFlow.java#L173)
0 commit comments