Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ class GetTokenStateAndContractId(
//get the RealEstateEvolvableTokenType object
val evolvableTokenType: FungibleHouseTokenState = stateAndRef.state.data

//get the pointer pointer to the house
//get the pointer to the house
val tokenPointer: TokenPointer<FungibleHouseTokenState> = evolvableTokenType.toPointer(evolvableTokenType.javaClass)

val issuerName: CordaX500Name = CordaX500Name.parse("O=PartyA,L=London,C=GB")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class RetrieveStateAndRef(
//get the RealEstateEvolvableTokenType object
val evolvableTokenType = stateAndRef.state.data

//get the pointer pointer to the house
//get the pointer to the house
val tokenPointer: TokenPointer<FungibleHouseTokenState> = evolvableTokenType.toPointer(evolvableTokenType.javaClass)

//specify how much amount to issue to holder
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class RedeemTokenFlow(val symbol: String,
//get the RealEstateEvolvableTokenType object
val evolvableTokenType = stateAndRef.state.data

//get the pointer pointer to the house
//get the pointer to the house
val tokenPointer: TokenPointer<FungibleHouseTokenState> = evolvableTokenType.toPointer(evolvableTokenType.javaClass)

//specify how much amount to issue to holder
Expand Down
Loading