class NotaryChange : TransactionTypeA special transaction type for reassigning a notary for a state. Validation does not involve running any contract code, it just checks that the states are unmodified apart from the notary field.
| Builder |
class Builder : TransactionBuilderA transaction builder that automatically sets the transaction type to NotaryChange and adds the list of participants to the signers set for every input state. |
| <init> |
NotaryChange()A special transaction type for reassigning a notary for a state. Validation does not involve running any contract code, it just checks that the states are unmodified apart from the notary field. |
| getRequiredSigners |
fun getRequiredSigners(tx: TransactionForVerification): Set<PublicKey>Return the list of public keys that that require signatures for the transaction type. Note: the notary key is checked separately for all transactions and need not be included. |
| verifyTransaction |
fun verifyTransaction(tx: TransactionForVerification): UnitCheck that the difference between inputs and outputs is only the notary field, and that all required signing public keys are present. |
| equals |
open fun equals(other: Any?): Boolean |
| hashCode |
open fun hashCode(): <ERROR CLASS> |
| verify |
fun verify(tx: TransactionForVerification): UnitCheck that the transaction is valid based on: |
| verifySigners |
fun verifySigners(tx: TransactionForVerification): Set<PublicKey>Check that the list of signers includes all the necessary keys |