Skip to content

Commit

Permalink
CORE-17816 expose verifySignatorySignatures
Browse files Browse the repository at this point in the history
  • Loading branch information
jennyang-r3 committed Dec 19, 2023
1 parent 896bd2f commit 03a1c20
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cordaProductVersion = 5.2.0
# NOTE: update this each time this module contains a breaking change
## NOTE: currently this is a top level revision, so all API versions will line up, but this could be moved to
## a per module property in which case module versions can change independently.
cordaApiRevision = 19
cordaApiRevision = 22

# Main
kotlin.stdlib.default.dependency = false
Expand Down
5 changes: 5 additions & 0 deletions ledger/ledger-utxo/scans/corda-ledger-utxo-5.2.0.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1670,6 +1670,11 @@ net.corda.v5.ledger.utxo.transaction.UtxoSignedTransaction:
referenceStateAndRefs:
annotation: []
type: java.util.List<net.corda.v5.ledger.utxo.StateAndRef<?>>
verifySignatorySignatures:
annotations: []
default: false
type: public abstract
returnType: void
net.corda.v5.ledger.utxo.transaction.UtxoTransactionBuilder:
annotations:
- DoNotImplement
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,4 +132,9 @@ public interface UtxoSignedTransaction extends TransactionWithMetadata {
@NotNull
@Suspendable
UtxoLedgerTransaction toLedgerTransaction(List<StateAndRef<?>> inputStateAndRefs, List<StateAndRef<?>> referenceStateAndRefs);

/**
* Verifies signatures of signatory of current {@link UtxoSignedTransaction}.
*/
void verifySignatorySignatures();
}

0 comments on commit 03a1c20

Please sign in to comment.