Enrique A Macias
Enrique A Macias

Reputation: 11

Corda Notary vault not showing transactions

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

Answers (1)

Joel
Joel

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:

  1. The transaction contains one or more inputs
  2. The transaction has a time-window

If neither of these conditions is satisfied, the transaction will not be sent to the notary.

Upvotes: 0

Related Questions