Reputation: 270
I have party A, B.
I have first created a state with only A as participant for a state.
After certain actions I want to share the same state I created earlier means.
By creating a new transaction consuming the old state and creating new state by adding the Party B also, so that this state also gets stored in Party B vault or node?
Please share if you have come through like this scenario on corda.
Upvotes: 2
Views: 333
Reputation: 23140
In Corda 3, there are several options:
PartyB
as an added participantPartyB
record the transaction as an observer: https://docs.corda.net/tutorial-observer-nodes.htmlIn Corda 4 onwards, you would add PartyB
as one of the sessions
to broadcast to as part of FinalityFlow
.
Upvotes: 3