ContractUpgradeFlow

A flow to be used for authorising and upgrading state objects of an old contract to a new contract.

This assembles the transaction for contract upgrade and sends out change proposals to all participants of that state. If participants agree to the proposed change, they each sign the transaction. Finally, the transaction containing all signatures is sent back to each participant so they can record it and use the new updated state for future transactions.

Types

Link copied to clipboard
class Authorise(val stateAndRef: StateAndRef<*>, upgradedContractClass: Class<out UpgradedContract<*, *>>) : FlowLogic<Void?>

Authorise a contract state upgrade.

Link copied to clipboard

Deauthorise a contract state upgrade. This will remove the upgrade authorisation from persistent store (and prevent any further upgrade)

Link copied to clipboard