Check status of a flow hash in corda notary

69 views Asked by At

How do I query the status of a flowID (or its hash) in the notary vault?(consumed/not-consumed).

Thank you in advance.

1

There are 1 answers

1
davidawad On

In your case, you're gonna want to take a look at the NODE_CHECKPOINTS table, you can query it by flowid.

Just try it with the corda shell if you're looking just once.

Here's a breakdown of each of the tables in corda and what is contained in all of them.

https://docs.corda.net/docs/corda-os/4.7/node-database-tables.html

If you want to do it programmatically take a look at the docs page on vault queries :

https://docs.corda.net/docs/corda-os/4.7/api-vault-query.html

good luck