Skip to content
New issue

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

CORE-14025 Add new request to find existing transactions in database and their status #1238

Merged
merged 17 commits into from
Oct 5, 2023
Merged
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"type": "record",
"name": "FindTransactionIds",
"doc": "A request to fetch transaction IDs that are in one of the given statuses.",
"namespace": "net.corda.data.ledger.persistence",
"fields": [
{
"name": "ids",
"type": {
"type" : "array",
"items" : "string"
},
"doc": "A list of the transaction IDs to fetch."
nkovacsx marked this conversation as resolved.
Show resolved Hide resolved
},
{
"name": "transactionStatuses",
"type": {
"type" : "array",
"items" : "string"
},
"doc": "The required statuses of the transactions. The transaction must have one of these statuses in order to be fetched."
}]
}
Original file line number Diff line number Diff line change
@@ -39,7 +39,8 @@
"net.corda.data.persistence.FindWithNamedQuery",
"net.corda.data.ledger.persistence.FindSignedGroupParameters",
"net.corda.data.ledger.persistence.PersistSignedGroupParametersIfDoNotExist",
"net.corda.data.ledger.persistence.FindSignedLedgerTransaction"
"net.corda.data.ledger.persistence.FindSignedLedgerTransaction",
"net.corda.data.ledger.persistence.FindTransactionIds"
]
},
{