Reputation: 11
I'm trying the obligation cordapp and I did some transactions from Party A to party B, and party B to party C.
When I run run internalVerifiedTransactionsSnapshot
on the party A, party B and party C shell, I do see the transactions in their respective vaults. But when I run it on the Notary shell, I don't see anything. I thought I would be able to see something on the Notary's vault. Am I doing something wrong?
Upvotes: 0
Views: 197
Reputation: 23140
Firstly, you need to ensure that the notary is a validating notary (who is sent entire transactions to validate) rather than a non-validating notary (who is only sent transaction hashes and output indices, to preserve privacy).
Additionally, note that a transaction is only sent to the notary is at least one of the following conditions is satisfied:
If neither of these conditions is satisfied, the transaction will not be sent to the notary.
Upvotes: 0