We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be beneficial, here that:
class SendKeyForAccountFlow(val otherSide: FlowSession) : FlowLogic<Unit>() {
Be instead:
class SendKeyForAccountFlow(val otherSide: FlowSession) : FlowLogic<AnonymousParty>() {
My use case is an atomic sale, 1 NFT in exchange for a bunch of fungible tokens:
RequestKeyForAccountFlow
SendKeyForAccountFlow
For the reason of "the buyer verifies that the transaction is correct", the buyer session needs to know what was sent earlier.
You will notice that this way of doing is already done in confidential identities here for ProvideKeyFlow.
ProvideKeyFlow
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It would be beneficial, here that:
Be instead:
My use case is an atomic sale, 1 NFT in exchange for a bunch of fungible tokens:
RequestKeyForAccountFlow
.SendKeyForAccountFlow
.For the reason of "the buyer verifies that the transaction is correct", the buyer session needs to know what was sent earlier.
You will notice that this way of doing is already done in confidential identities here for
ProvideKeyFlow
.The text was updated successfully, but these errors were encountered: