corda/docs/source/api-transactions.rst

783 lines
28 KiB
ReStructuredText
Raw Normal View History

2017-06-05 12:37:23 +00:00
.. highlight:: kotlin
.. raw:: html
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/codesets.js"></script>
API: Transactions
=================
.. note:: Before reading this page, you should be familiar with the key concepts of :doc:`key-concepts-transactions`.
.. contents::
2017-06-05 12:37:23 +00:00
Transaction lifecycle
---------------------
Between its creation and its final inclusion on the ledger, a transaction will generally occupy one of three states:
2017-06-05 12:37:23 +00:00
* ``TransactionBuilder``. A transaction's initial state. This is the only state during which the transaction is
mutable, so we must add all the required components before moving on.
* ``SignedTransaction``. The transaction now has one or more digital signatures, making it immutable. This is the
transaction type that is passed around to collect additional signatures and that is recorded on the ledger.
* ``LedgerTransaction``. The transaction has been "resolved" - for example, its inputs have been converted from
references to actual states - allowing the transaction to be fully inspected.
We can visualise the transitions between the three stages as follows:
2017-06-05 12:37:23 +00:00
.. image:: resources/transaction-flow.png
Transaction components
----------------------
A transaction consists of six types of components:
2017-06-05 12:37:23 +00:00
* 1+ states:
2017-06-05 12:37:23 +00:00
* 0+ input states
* 0+ output states
CORDA-1332 Reference input states (#3525) * * First commit for reference input states feature. * Added docs. * Added additional test. * Fixed whitespace. * Rebased to master. * Updated Raft and persistent notary implementations. * Updated changelog. * Updated topo sort to handle reference states. * Stubbed out with referenced states flow. * Added WithReferencedStatesFlow. * Added Tests for WithReferencedStatesFlow. * Added ReferenceState type. * Rebased to latest version of master. * Added better comments. * Updated unit test. * Added comment to explain a little hack. * Fixed broken contract upgrade RPC test. * Added minimum platform version check. * Updated mock network so that notary nodes inherit the platform version set by the network's minimum platform version. * References states can now only be used when minimum platform version >= 4. * Created a new file to hold async operations as "WaitForStatesToUpdate" is broadly reusable. * Refactored WithReferenceStatesFlow * Updated javadoc for WaitForStatesToUpdate aysnc operation. * Added network parameters property to InternalMockNetwork. * Added min platform version capability to mock services. * Removed erroneous chars from file. * Made async operation internal and now call it from FlowLogic. * Moved some transaction checking code around. * Removed serializable annotation from referenced state and ref. * Added reference states design doc. * Added missing KDocs. * Updated with reference states flow to handle consecutive update races. * Made platform version info an inheritable thread local. * Fixed various typos. * Updated docs. * Fixed race. * Removed min platform version checks as API needs more thought. * Added deprecation to method and supressed warnings. * Renamed WaitForStatesToUpdate to WaitForStateConsumption. * Fixed race in WaitForStateConsumption. * Addressed PR comments and updated comments / KDocs. * Reverse vault bugfixes. * * Vault bug fixes. * * Fixed broken test. * Moved WaitForStateConsumption to internal package.
2018-07-25 13:06:56 +00:00
* 0+ reference input states
2017-07-07 11:06:10 +00:00
* 1+ commands
* 0+ attachments
* 0 or 1 time-window
2017-07-07 11:06:10 +00:00
* A transaction with a time-window must also have a notary
Each component corresponds to a specific class in the Corda API. The following section describes each component class,
and how it is created.
2017-07-07 11:06:10 +00:00
Input states
^^^^^^^^^^^^
An input state is added to a transaction as a ``StateAndRef``, which combines:
2017-07-07 11:06:10 +00:00
* The ``ContractState`` itself
* A ``StateRef`` identifying this ``ContractState`` as the output of a specific transaction
2017-07-07 11:06:10 +00:00
.. container:: codeset
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
:language: kotlin
:start-after: DOCSTART 21
:end-before: DOCEND 21
2017-10-07 11:48:16 +00:00
:dedent: 8
2017-07-07 11:06:10 +00:00
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
:language: java
:start-after: DOCSTART 21
:end-before: DOCEND 21
:dedent: 12
2017-07-07 11:06:10 +00:00
A ``StateRef`` uniquely identifies an input state, allowing the notary to mark it as historic. It is made up of:
* The hash of the transaction that generated the state
* The state's index in the outputs of that transaction
.. container:: codeset
2017-06-05 12:37:23 +00:00
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
:language: kotlin
:start-after: DOCSTART 20
:end-before: DOCEND 20
2017-10-07 11:48:16 +00:00
:dedent: 8
2017-07-07 11:06:10 +00:00
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
:language: java
:start-after: DOCSTART 20
:end-before: DOCEND 20
:dedent: 12
2017-07-07 11:06:10 +00:00
The ``StateRef`` links an input state back to the transaction that created it. This means that transactions form
"chains" linking each input back to an original issuance transaction. This allows nodes verifying the transaction
to "walk the chain" and verify that each input was generated through a valid sequence of transactions.
2017-07-07 11:06:10 +00:00
CORDA-1332 Reference input states (#3525) * * First commit for reference input states feature. * Added docs. * Added additional test. * Fixed whitespace. * Rebased to master. * Updated Raft and persistent notary implementations. * Updated changelog. * Updated topo sort to handle reference states. * Stubbed out with referenced states flow. * Added WithReferencedStatesFlow. * Added Tests for WithReferencedStatesFlow. * Added ReferenceState type. * Rebased to latest version of master. * Added better comments. * Updated unit test. * Added comment to explain a little hack. * Fixed broken contract upgrade RPC test. * Added minimum platform version check. * Updated mock network so that notary nodes inherit the platform version set by the network's minimum platform version. * References states can now only be used when minimum platform version >= 4. * Created a new file to hold async operations as "WaitForStatesToUpdate" is broadly reusable. * Refactored WithReferenceStatesFlow * Updated javadoc for WaitForStatesToUpdate aysnc operation. * Added network parameters property to InternalMockNetwork. * Added min platform version capability to mock services. * Removed erroneous chars from file. * Made async operation internal and now call it from FlowLogic. * Moved some transaction checking code around. * Removed serializable annotation from referenced state and ref. * Added reference states design doc. * Added missing KDocs. * Updated with reference states flow to handle consecutive update races. * Made platform version info an inheritable thread local. * Fixed various typos. * Updated docs. * Fixed race. * Removed min platform version checks as API needs more thought. * Added deprecation to method and supressed warnings. * Renamed WaitForStatesToUpdate to WaitForStateConsumption. * Fixed race in WaitForStateConsumption. * Addressed PR comments and updated comments / KDocs. * Reverse vault bugfixes. * * Vault bug fixes. * * Fixed broken test. * Moved WaitForStateConsumption to internal package.
2018-07-25 13:06:56 +00:00
Reference input states
~~~~~~~~~~~~~~~~~~~~~~
.. warning:: Reference states are only available on Corda networks with a minimum platform version >= 4.
A reference input state is added to a transaction as a ``ReferencedStateAndRef``. A ``ReferencedStateAndRef`` can be
obtained from a ``StateAndRef`` by calling the ``StateAndRef.referenced()`` method which returns a ``ReferencedStateAndRef``.
CORDA-1332 Reference input states (#3525) * * First commit for reference input states feature. * Added docs. * Added additional test. * Fixed whitespace. * Rebased to master. * Updated Raft and persistent notary implementations. * Updated changelog. * Updated topo sort to handle reference states. * Stubbed out with referenced states flow. * Added WithReferencedStatesFlow. * Added Tests for WithReferencedStatesFlow. * Added ReferenceState type. * Rebased to latest version of master. * Added better comments. * Updated unit test. * Added comment to explain a little hack. * Fixed broken contract upgrade RPC test. * Added minimum platform version check. * Updated mock network so that notary nodes inherit the platform version set by the network's minimum platform version. * References states can now only be used when minimum platform version >= 4. * Created a new file to hold async operations as "WaitForStatesToUpdate" is broadly reusable. * Refactored WithReferenceStatesFlow * Updated javadoc for WaitForStatesToUpdate aysnc operation. * Added network parameters property to InternalMockNetwork. * Added min platform version capability to mock services. * Removed erroneous chars from file. * Made async operation internal and now call it from FlowLogic. * Moved some transaction checking code around. * Removed serializable annotation from referenced state and ref. * Added reference states design doc. * Added missing KDocs. * Updated with reference states flow to handle consecutive update races. * Made platform version info an inheritable thread local. * Fixed various typos. * Updated docs. * Fixed race. * Removed min platform version checks as API needs more thought. * Added deprecation to method and supressed warnings. * Renamed WaitForStatesToUpdate to WaitForStateConsumption. * Fixed race in WaitForStateConsumption. * Addressed PR comments and updated comments / KDocs. * Reverse vault bugfixes. * * Vault bug fixes. * * Fixed broken test. * Moved WaitForStateConsumption to internal package.
2018-07-25 13:06:56 +00:00
.. container:: codeset
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
:language: kotlin
:start-after: DOCSTART 55
:end-before: DOCEND 55
:dedent: 8
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
:language: java
:start-after: DOCSTART 55
:end-before: DOCEND 55
:dedent: 12
CORDA-1332 Reference input states (#3525) * * First commit for reference input states feature. * Added docs. * Added additional test. * Fixed whitespace. * Rebased to master. * Updated Raft and persistent notary implementations. * Updated changelog. * Updated topo sort to handle reference states. * Stubbed out with referenced states flow. * Added WithReferencedStatesFlow. * Added Tests for WithReferencedStatesFlow. * Added ReferenceState type. * Rebased to latest version of master. * Added better comments. * Updated unit test. * Added comment to explain a little hack. * Fixed broken contract upgrade RPC test. * Added minimum platform version check. * Updated mock network so that notary nodes inherit the platform version set by the network's minimum platform version. * References states can now only be used when minimum platform version >= 4. * Created a new file to hold async operations as "WaitForStatesToUpdate" is broadly reusable. * Refactored WithReferenceStatesFlow * Updated javadoc for WaitForStatesToUpdate aysnc operation. * Added network parameters property to InternalMockNetwork. * Added min platform version capability to mock services. * Removed erroneous chars from file. * Made async operation internal and now call it from FlowLogic. * Moved some transaction checking code around. * Removed serializable annotation from referenced state and ref. * Added reference states design doc. * Added missing KDocs. * Updated with reference states flow to handle consecutive update races. * Made platform version info an inheritable thread local. * Fixed various typos. * Updated docs. * Fixed race. * Removed min platform version checks as API needs more thought. * Added deprecation to method and supressed warnings. * Renamed WaitForStatesToUpdate to WaitForStateConsumption. * Fixed race in WaitForStateConsumption. * Addressed PR comments and updated comments / KDocs. * Reverse vault bugfixes. * * Vault bug fixes. * * Fixed broken test. * Moved WaitForStateConsumption to internal package.
2018-07-25 13:06:56 +00:00
**Handling of update races:**
When using reference states in a transaction, it may be the case that a notarisation failure occurs. This is most likely
because the creator of the state (being used as a reference state in your transaction), has just updated it.
Typically, the creator of such reference data will have implemented flows for syndicating the updates out to users.
However it is inevitable that there will be a delay between the state being used as a reference being consumed, and the
nodes using it receiving the update.
This is where the ``WithReferencedStatesFlow`` comes in. Given a flow which uses reference states, the
``WithReferencedStatesFlow`` will execute the the flow as a subFlow. If the flow fails due to a ``NotaryError.Conflict``
for a reference state, then it will be suspended until the state refs for the reference states are consumed. In this
case, a consumption means that:
CORDA-1332 Reference input states (#3525) * * First commit for reference input states feature. * Added docs. * Added additional test. * Fixed whitespace. * Rebased to master. * Updated Raft and persistent notary implementations. * Updated changelog. * Updated topo sort to handle reference states. * Stubbed out with referenced states flow. * Added WithReferencedStatesFlow. * Added Tests for WithReferencedStatesFlow. * Added ReferenceState type. * Rebased to latest version of master. * Added better comments. * Updated unit test. * Added comment to explain a little hack. * Fixed broken contract upgrade RPC test. * Added minimum platform version check. * Updated mock network so that notary nodes inherit the platform version set by the network's minimum platform version. * References states can now only be used when minimum platform version >= 4. * Created a new file to hold async operations as "WaitForStatesToUpdate" is broadly reusable. * Refactored WithReferenceStatesFlow * Updated javadoc for WaitForStatesToUpdate aysnc operation. * Added network parameters property to InternalMockNetwork. * Added min platform version capability to mock services. * Removed erroneous chars from file. * Made async operation internal and now call it from FlowLogic. * Moved some transaction checking code around. * Removed serializable annotation from referenced state and ref. * Added reference states design doc. * Added missing KDocs. * Updated with reference states flow to handle consecutive update races. * Made platform version info an inheritable thread local. * Fixed various typos. * Updated docs. * Fixed race. * Removed min platform version checks as API needs more thought. * Added deprecation to method and supressed warnings. * Renamed WaitForStatesToUpdate to WaitForStateConsumption. * Fixed race in WaitForStateConsumption. * Addressed PR comments and updated comments / KDocs. * Reverse vault bugfixes. * * Vault bug fixes. * * Fixed broken test. * Moved WaitForStateConsumption to internal package.
2018-07-25 13:06:56 +00:00
1. the owner of the reference state has updated the state with a valid, notarised transaction
2. the owner of the reference state has shared the update with the node attempting to run the flow which uses the
reference state
3. The node has successfully committed the transaction updating the reference state (and all the dependencies), and
added the updated reference state to the vault.
CORDA-1332 Reference input states (#3525) * * First commit for reference input states feature. * Added docs. * Added additional test. * Fixed whitespace. * Rebased to master. * Updated Raft and persistent notary implementations. * Updated changelog. * Updated topo sort to handle reference states. * Stubbed out with referenced states flow. * Added WithReferencedStatesFlow. * Added Tests for WithReferencedStatesFlow. * Added ReferenceState type. * Rebased to latest version of master. * Added better comments. * Updated unit test. * Added comment to explain a little hack. * Fixed broken contract upgrade RPC test. * Added minimum platform version check. * Updated mock network so that notary nodes inherit the platform version set by the network's minimum platform version. * References states can now only be used when minimum platform version >= 4. * Created a new file to hold async operations as "WaitForStatesToUpdate" is broadly reusable. * Refactored WithReferenceStatesFlow * Updated javadoc for WaitForStatesToUpdate aysnc operation. * Added network parameters property to InternalMockNetwork. * Added min platform version capability to mock services. * Removed erroneous chars from file. * Made async operation internal and now call it from FlowLogic. * Moved some transaction checking code around. * Removed serializable annotation from referenced state and ref. * Added reference states design doc. * Added missing KDocs. * Updated with reference states flow to handle consecutive update races. * Made platform version info an inheritable thread local. * Fixed various typos. * Updated docs. * Fixed race. * Removed min platform version checks as API needs more thought. * Added deprecation to method and supressed warnings. * Renamed WaitForStatesToUpdate to WaitForStateConsumption. * Fixed race in WaitForStateConsumption. * Addressed PR comments and updated comments / KDocs. * Reverse vault bugfixes. * * Vault bug fixes. * * Fixed broken test. * Moved WaitForStateConsumption to internal package.
2018-07-25 13:06:56 +00:00
At the point where the transaction updating the state being used as a reference is committed to storage and the vault
update occurs, then the ``WithReferencedStatesFlow`` will wake up and re-execute the provided flow.
CORDA-1332 Reference input states (#3525) * * First commit for reference input states feature. * Added docs. * Added additional test. * Fixed whitespace. * Rebased to master. * Updated Raft and persistent notary implementations. * Updated changelog. * Updated topo sort to handle reference states. * Stubbed out with referenced states flow. * Added WithReferencedStatesFlow. * Added Tests for WithReferencedStatesFlow. * Added ReferenceState type. * Rebased to latest version of master. * Added better comments. * Updated unit test. * Added comment to explain a little hack. * Fixed broken contract upgrade RPC test. * Added minimum platform version check. * Updated mock network so that notary nodes inherit the platform version set by the network's minimum platform version. * References states can now only be used when minimum platform version >= 4. * Created a new file to hold async operations as "WaitForStatesToUpdate" is broadly reusable. * Refactored WithReferenceStatesFlow * Updated javadoc for WaitForStatesToUpdate aysnc operation. * Added network parameters property to InternalMockNetwork. * Added min platform version capability to mock services. * Removed erroneous chars from file. * Made async operation internal and now call it from FlowLogic. * Moved some transaction checking code around. * Removed serializable annotation from referenced state and ref. * Added reference states design doc. * Added missing KDocs. * Updated with reference states flow to handle consecutive update races. * Made platform version info an inheritable thread local. * Fixed various typos. * Updated docs. * Fixed race. * Removed min platform version checks as API needs more thought. * Added deprecation to method and supressed warnings. * Renamed WaitForStatesToUpdate to WaitForStateConsumption. * Fixed race in WaitForStateConsumption. * Addressed PR comments and updated comments / KDocs. * Reverse vault bugfixes. * * Vault bug fixes. * * Fixed broken test. * Moved WaitForStateConsumption to internal package.
2018-07-25 13:06:56 +00:00
.. warning:: Caution should be taken when using this flow as it facilitates automated re-running of flows which use
reference states. The flow using reference states should include checks to ensure that the reference data is
reasonable, especially if the economics of the transaction depends upon the data contained within a reference state.
CORDA-1332 Reference input states (#3525) * * First commit for reference input states feature. * Added docs. * Added additional test. * Fixed whitespace. * Rebased to master. * Updated Raft and persistent notary implementations. * Updated changelog. * Updated topo sort to handle reference states. * Stubbed out with referenced states flow. * Added WithReferencedStatesFlow. * Added Tests for WithReferencedStatesFlow. * Added ReferenceState type. * Rebased to latest version of master. * Added better comments. * Updated unit test. * Added comment to explain a little hack. * Fixed broken contract upgrade RPC test. * Added minimum platform version check. * Updated mock network so that notary nodes inherit the platform version set by the network's minimum platform version. * References states can now only be used when minimum platform version >= 4. * Created a new file to hold async operations as "WaitForStatesToUpdate" is broadly reusable. * Refactored WithReferenceStatesFlow * Updated javadoc for WaitForStatesToUpdate aysnc operation. * Added network parameters property to InternalMockNetwork. * Added min platform version capability to mock services. * Removed erroneous chars from file. * Made async operation internal and now call it from FlowLogic. * Moved some transaction checking code around. * Removed serializable annotation from referenced state and ref. * Added reference states design doc. * Added missing KDocs. * Updated with reference states flow to handle consecutive update races. * Made platform version info an inheritable thread local. * Fixed various typos. * Updated docs. * Fixed race. * Removed min platform version checks as API needs more thought. * Added deprecation to method and supressed warnings. * Renamed WaitForStatesToUpdate to WaitForStateConsumption. * Fixed race in WaitForStateConsumption. * Addressed PR comments and updated comments / KDocs. * Reverse vault bugfixes. * * Vault bug fixes. * * Fixed broken test. * Moved WaitForStateConsumption to internal package.
2018-07-25 13:06:56 +00:00
2017-07-07 11:06:10 +00:00
Output states
^^^^^^^^^^^^^
2017-07-07 11:06:10 +00:00
Since a transaction's output states do not exist until the transaction is committed, they cannot be referenced as the
outputs of previous transactions. Instead, we create the desired output states as ``ContractState`` instances, and
add them to the transaction directly:
2017-06-05 12:37:23 +00:00
2017-07-07 11:06:10 +00:00
.. container:: codeset
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
:language: kotlin
:start-after: DOCSTART 22
:end-before: DOCEND 22
2017-10-07 11:48:16 +00:00
:dedent: 8
2017-07-07 11:06:10 +00:00
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
:language: java
:start-after: DOCSTART 22
:end-before: DOCEND 22
:dedent: 12
2017-06-05 12:37:23 +00:00
In cases where an output state represents an update of an input state, we may want to create the output state by basing
it on the input state:
2017-06-05 12:37:23 +00:00
2017-07-07 11:06:10 +00:00
.. container:: codeset
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
:language: kotlin
:start-after: DOCSTART 23
:end-before: DOCEND 23
2017-10-07 11:48:16 +00:00
:dedent: 8
2017-06-05 12:37:23 +00:00
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
:language: java
:start-after: DOCSTART 23
:end-before: DOCEND 23
:dedent: 12
Before our output state can be added to a transaction, we need to associate it with a contract. We can do this by
wrapping the output state in a ``StateAndContract``, which combines:
* The ``ContractState`` representing the output states
* A ``String`` identifying the contract governing the state
.. container:: codeset
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
:language: kotlin
:start-after: DOCSTART 47
:end-before: DOCEND 47
2017-10-07 11:48:16 +00:00
:dedent: 8
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
:language: java
:start-after: DOCSTART 47
:end-before: DOCEND 47
:dedent: 12
2017-07-07 11:06:10 +00:00
Commands
^^^^^^^^
A command is added to the transaction as a ``Command``, which combines:
2017-07-07 11:06:10 +00:00
* A ``CommandData`` instance indicating the command's type
* A ``List<PublicKey>`` representing the command's required signers
2017-07-07 11:06:10 +00:00
.. container:: codeset
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
:language: kotlin
:start-after: DOCSTART 24
:end-before: DOCEND 24
2017-10-07 11:48:16 +00:00
:dedent: 8
2017-07-07 11:06:10 +00:00
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
:language: java
:start-after: DOCSTART 24
:end-before: DOCEND 24
:dedent: 12
2017-07-07 11:06:10 +00:00
Attachments
^^^^^^^^^^^
Attachments are identified by their hash:
2017-07-07 11:06:10 +00:00
.. container:: codeset
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
:language: kotlin
:start-after: DOCSTART 25
:end-before: DOCEND 25
2017-10-07 11:48:16 +00:00
:dedent: 8
2017-07-07 11:06:10 +00:00
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
:language: java
:start-after: DOCSTART 25
:end-before: DOCEND 25
:dedent: 12
The attachment with the corresponding hash must have been uploaded ahead of time via the node's RPC interface.
2017-07-07 11:06:10 +00:00
Time-windows
^^^^^^^^^^^^
Time windows represent the period during which the transaction must be notarised. They can have a start and an end
time, or be open at either end:
2017-07-07 11:06:10 +00:00
.. container:: codeset
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
:language: kotlin
:start-after: DOCSTART 26
:end-before: DOCEND 26
2017-10-07 11:48:16 +00:00
:dedent: 8
2017-07-07 11:06:10 +00:00
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
:language: java
:start-after: DOCSTART 26
:end-before: DOCEND 26
:dedent: 12
2017-07-07 11:06:10 +00:00
We can also define a time window as an ``Instant`` plus/minus a time tolerance (e.g. 30 seconds):
2017-07-07 11:06:10 +00:00
.. container:: codeset
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
:language: kotlin
:start-after: DOCSTART 42
:end-before: DOCEND 42
2017-10-07 11:48:16 +00:00
:dedent: 8
2017-07-07 11:06:10 +00:00
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
:language: java
:start-after: DOCSTART 42
:end-before: DOCEND 42
:dedent: 12
2017-07-07 11:06:10 +00:00
Or as a start-time plus a duration:
.. container:: codeset
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
:language: kotlin
:start-after: DOCSTART 43
:end-before: DOCEND 43
2017-10-07 11:48:16 +00:00
:dedent: 8
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
:language: java
:start-after: DOCSTART 43
:end-before: DOCEND 43
:dedent: 12
TransactionBuilder
------------------
Creating a builder
^^^^^^^^^^^^^^^^^^
The first step when creating a transaction proposal is to instantiate a ``TransactionBuilder``.
If the transaction has input states or a time-window, we need to instantiate the builder with a reference to the notary
that will notarise the inputs and verify the time-window:
2017-07-07 11:06:10 +00:00
.. container:: codeset
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
2017-07-07 11:06:10 +00:00
:language: kotlin
:start-after: DOCSTART 19
:end-before: DOCEND 19
2017-10-07 11:48:16 +00:00
:dedent: 8
2017-07-07 11:06:10 +00:00
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
2017-07-07 11:06:10 +00:00
:language: java
:start-after: DOCSTART 19
:end-before: DOCEND 19
2017-07-07 11:06:10 +00:00
:dedent: 12
2017-06-05 12:37:23 +00:00
We discuss the selection of a notary in :doc:`api-flows`.
If the transaction does not have any input states or a time-window, it does not require a notary, and can be
instantiated without one:
.. container:: codeset
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
:language: kotlin
:start-after: DOCSTART 46
:end-before: DOCEND 46
2017-10-07 11:48:16 +00:00
:dedent: 8
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
:language: java
:start-after: DOCSTART 46
:end-before: DOCEND 46
:dedent: 12
2017-06-05 12:37:23 +00:00
Adding items
^^^^^^^^^^^^
The next step is to build up the transaction proposal by adding the desired components.
We can add components to the builder using the ``TransactionBuilder.withItems`` method:
2017-06-05 12:37:23 +00:00
.. container:: codeset
.. literalinclude:: ../../core/src/main/kotlin/net/corda/core/transactions/TransactionBuilder.kt
:language: kotlin
:start-after: DOCSTART 1
:end-before: DOCEND 1
``withItems`` takes a ``vararg`` of objects and adds them to the builder based on their type:
* ``StateAndRef`` objects are added as input states
CORDA-1332 Reference input states (#3525) * * First commit for reference input states feature. * Added docs. * Added additional test. * Fixed whitespace. * Rebased to master. * Updated Raft and persistent notary implementations. * Updated changelog. * Updated topo sort to handle reference states. * Stubbed out with referenced states flow. * Added WithReferencedStatesFlow. * Added Tests for WithReferencedStatesFlow. * Added ReferenceState type. * Rebased to latest version of master. * Added better comments. * Updated unit test. * Added comment to explain a little hack. * Fixed broken contract upgrade RPC test. * Added minimum platform version check. * Updated mock network so that notary nodes inherit the platform version set by the network's minimum platform version. * References states can now only be used when minimum platform version >= 4. * Created a new file to hold async operations as "WaitForStatesToUpdate" is broadly reusable. * Refactored WithReferenceStatesFlow * Updated javadoc for WaitForStatesToUpdate aysnc operation. * Added network parameters property to InternalMockNetwork. * Added min platform version capability to mock services. * Removed erroneous chars from file. * Made async operation internal and now call it from FlowLogic. * Moved some transaction checking code around. * Removed serializable annotation from referenced state and ref. * Added reference states design doc. * Added missing KDocs. * Updated with reference states flow to handle consecutive update races. * Made platform version info an inheritable thread local. * Fixed various typos. * Updated docs. * Fixed race. * Removed min platform version checks as API needs more thought. * Added deprecation to method and supressed warnings. * Renamed WaitForStatesToUpdate to WaitForStateConsumption. * Fixed race in WaitForStateConsumption. * Addressed PR comments and updated comments / KDocs. * Reverse vault bugfixes. * * Vault bug fixes. * * Fixed broken test. * Moved WaitForStateConsumption to internal package.
2018-07-25 13:06:56 +00:00
* ``ReferencedStateAndRef`` objects are added as reference input states
* ``TransactionState`` and ``StateAndContract`` objects are added as output states
* Both ``TransactionState`` and ``StateAndContract`` are wrappers around a ``ContractState`` output that link the
output to a specific contract
2017-06-05 12:37:23 +00:00
* ``Command`` objects are added as commands
* ``SecureHash`` objects are added as attachments
* A ``TimeWindow`` object replaces the transaction's existing ``TimeWindow``, if any
2017-06-05 12:37:23 +00:00
Passing in objects of any other type will cause an ``IllegalArgumentException`` to be thrown.
2017-07-07 11:06:10 +00:00
Here's an example usage of ``TransactionBuilder.withItems``:
2017-06-05 12:37:23 +00:00
2017-07-07 11:06:10 +00:00
.. container:: codeset
2017-06-05 12:37:23 +00:00
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
2017-07-07 11:06:10 +00:00
:language: kotlin
:start-after: DOCSTART 27
:end-before: DOCEND 27
2017-10-07 11:48:16 +00:00
:dedent: 8
2017-06-05 12:37:23 +00:00
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
2017-07-07 11:06:10 +00:00
:language: java
:start-after: DOCSTART 27
:end-before: DOCEND 27
:dedent: 12
There are also individual methods for adding components.
Here are the methods for adding inputs and attachments:
2017-06-05 12:37:23 +00:00
.. container:: codeset
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
:language: kotlin
:start-after: DOCSTART 28
:end-before: DOCEND 28
2017-10-07 11:48:16 +00:00
:dedent: 8
2017-07-07 11:06:10 +00:00
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
:language: java
:start-after: DOCSTART 28
:end-before: DOCEND 28
:dedent: 12
An output state can be added as a ``ContractState``, contract class name and notary:
.. container:: codeset
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
:language: kotlin
:start-after: DOCSTART 49
:end-before: DOCEND 49
2017-10-07 11:48:16 +00:00
:dedent: 8
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
:language: java
:start-after: DOCSTART 49
:end-before: DOCEND 49
:dedent: 12
2017-06-05 12:37:23 +00:00
We can also leave the notary field blank, in which case the transaction's default notary is used:
.. container:: codeset
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
:language: kotlin
:start-after: DOCSTART 50
:end-before: DOCEND 50
2017-10-07 11:48:16 +00:00
:dedent: 8
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
:language: java
:start-after: DOCSTART 50
:end-before: DOCEND 50
:dedent: 12
Or we can add the output state as a ``TransactionState``, which already specifies the output's contract and notary:
.. container:: codeset
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
:language: kotlin
:start-after: DOCSTART 51
:end-before: DOCEND 51
2017-10-07 11:48:16 +00:00
:dedent: 8
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
:language: java
:start-after: DOCSTART 51
:end-before: DOCEND 51
:dedent: 12
Commands can be added as a ``Command``:
.. container:: codeset
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
:language: kotlin
:start-after: DOCSTART 52
:end-before: DOCEND 52
2017-10-07 11:48:16 +00:00
:dedent: 8
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
:language: java
:start-after: DOCSTART 52
:end-before: DOCEND 52
:dedent: 12
Or as ``CommandData`` and a ``vararg PublicKey``:
.. container:: codeset
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
:language: kotlin
:start-after: DOCSTART 53
:end-before: DOCEND 53
2017-10-07 11:48:16 +00:00
:dedent: 8
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
:language: java
:start-after: DOCSTART 53
:end-before: DOCEND 53
:dedent: 12
For the time-window, we can set a time-window directly:
2017-06-05 12:37:23 +00:00
.. container:: codeset
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
2017-06-05 12:37:23 +00:00
:language: kotlin
2017-07-07 11:06:10 +00:00
:start-after: DOCSTART 44
:end-before: DOCEND 44
2017-10-07 11:48:16 +00:00
:dedent: 8
2017-06-05 12:37:23 +00:00
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
2017-07-07 11:06:10 +00:00
:language: java
:start-after: DOCSTART 44
:end-before: DOCEND 44
:dedent: 12
2017-06-05 12:37:23 +00:00
2017-07-07 11:06:10 +00:00
Or define the time-window as a time plus a duration (e.g. 45 seconds):
2017-06-05 12:37:23 +00:00
.. container:: codeset
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
2017-06-05 12:37:23 +00:00
:language: kotlin
2017-07-07 11:06:10 +00:00
:start-after: DOCSTART 45
:end-before: DOCEND 45
2017-10-07 11:48:16 +00:00
:dedent: 8
2017-07-07 11:06:10 +00:00
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
2017-07-07 11:06:10 +00:00
:language: java
:start-after: DOCSTART 45
:end-before: DOCEND 45
:dedent: 12
2017-06-05 12:37:23 +00:00
Signing the builder
^^^^^^^^^^^^^^^^^^^
Once the builder is ready, we finalize it by signing it and converting it into a ``SignedTransaction``.
We can either sign with our legal identity key:
2017-06-05 12:37:23 +00:00
.. container:: codeset
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
2017-07-07 11:06:10 +00:00
:language: kotlin
:start-after: DOCSTART 29
:end-before: DOCEND 29
2017-10-07 11:48:16 +00:00
:dedent: 8
2017-06-05 12:37:23 +00:00
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
2017-07-07 11:06:10 +00:00
:language: java
:start-after: DOCSTART 29
:end-before: DOCEND 29
:dedent: 12
2017-06-05 12:37:23 +00:00
Or we can also choose to use another one of our public keys:
2017-06-05 12:37:23 +00:00
2017-07-07 11:06:10 +00:00
.. container:: codeset
2017-06-05 12:37:23 +00:00
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
2017-07-07 11:06:10 +00:00
:language: kotlin
:start-after: DOCSTART 30
:end-before: DOCEND 30
2017-10-07 11:48:16 +00:00
:dedent: 8
2017-06-05 12:37:23 +00:00
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
2017-07-07 11:06:10 +00:00
:language: java
:start-after: DOCSTART 30
:end-before: DOCEND 30
:dedent: 12
2017-06-05 12:37:23 +00:00
Either way, the outcome of this process is to create an immutable ``SignedTransaction`` with our signature over it.
2017-06-05 12:37:23 +00:00
SignedTransaction
-----------------
2017-07-07 11:06:10 +00:00
A ``SignedTransaction`` is a combination of:
* An immutable transaction
2017-07-07 11:06:10 +00:00
* A list of signatures over that transaction
2017-06-05 12:37:23 +00:00
.. container:: codeset
.. literalinclude:: ../../core/src/main/kotlin/net/corda/core/transactions/SignedTransaction.kt
:language: kotlin
:start-after: DOCSTART 1
:end-before: DOCEND 1
Before adding our signature to the transaction, we'll want to verify both the transaction's contents and the
transaction's signatures.
2017-07-07 11:06:10 +00:00
Verifying the transaction's contents
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
If a transaction has inputs, we need to retrieve all the states in the transaction's dependency chain before we can
verify the transaction's contents. This is because the transaction is only valid if its dependency chain is also valid.
We do this by requesting any states in the chain that our node doesn't currently have in its local storage from the
proposer(s) of the transaction. This process is handled by a built-in flow called ``ReceiveTransactionFlow``.
See :doc:`api-flows` for more details.
2017-07-07 11:06:10 +00:00
We can now verify the transaction's contents to ensure that it satisfies the contracts of all the transaction's input
and output states:
2017-06-05 12:37:23 +00:00
.. container:: codeset
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
2017-06-05 12:37:23 +00:00
:language: kotlin
:start-after: DOCSTART 33
:end-before: DOCEND 33
2017-10-07 11:48:16 +00:00
:dedent: 8
2017-06-05 12:37:23 +00:00
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
2017-07-07 11:06:10 +00:00
:language: java
:start-after: DOCSTART 33
:end-before: DOCEND 33
2017-10-07 11:48:16 +00:00
:dedent: 16
2017-06-05 12:37:23 +00:00
Checking that the transaction meets the contract constraints is only part of verifying the transaction's contents. We
will usually also want to perform our own additional validation of the transaction contents before signing, to ensure
that the transaction proposal represents an agreement we wish to enter into.
However, the ``SignedTransaction`` holds its inputs as ``StateRef`` instances, and its attachments as ``SecureHash``
instances, which do not provide enough information to properly validate the transaction's contents. We first need to
resolve the ``StateRef`` and ``SecureHash`` instances into actual ``ContractState`` and ``Attachment`` instances, which
we can then inspect.
We achieve this by using the ``ServiceHub`` to convert the ``SignedTransaction`` into a ``LedgerTransaction``:
2017-06-05 12:37:23 +00:00
.. container:: codeset
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
2017-07-07 11:06:10 +00:00
:language: kotlin
:start-after: DOCSTART 32
:end-before: DOCEND 32
2017-10-07 11:48:16 +00:00
:dedent: 8
2017-06-05 12:37:23 +00:00
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
2017-07-07 11:06:10 +00:00
:language: java
:start-after: DOCSTART 32
:end-before: DOCEND 32
2017-10-07 11:48:16 +00:00
:dedent: 16
2017-06-05 12:37:23 +00:00
We can now perform our additional verification. Here's a simple example:
2017-06-05 12:37:23 +00:00
2017-07-07 11:06:10 +00:00
.. container:: codeset
2017-06-05 12:37:23 +00:00
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
2017-07-07 11:06:10 +00:00
:language: kotlin
:start-after: DOCSTART 34
:end-before: DOCEND 34
2017-10-07 11:48:16 +00:00
:dedent: 8
2017-06-05 12:37:23 +00:00
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
2017-07-07 11:06:10 +00:00
:language: java
:start-after: DOCSTART 34
:end-before: DOCEND 34
2017-10-07 11:48:16 +00:00
:dedent: 16
2017-06-05 12:37:23 +00:00
Verifying the transaction's signatures
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Aside from verifying that the transaction's contents are valid, we also need to check that the signatures are valid. A
valid signature over the hash of the transaction prevents tampering.
We can verify that all the transaction's required signatures are present and valid as follows:
2017-06-05 12:37:23 +00:00
.. container:: codeset
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
2017-07-07 11:06:10 +00:00
:language: kotlin
:start-after: DOCSTART 35
:end-before: DOCEND 35
2017-10-07 11:48:16 +00:00
:dedent: 8
2017-06-05 12:37:23 +00:00
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
2017-07-07 11:06:10 +00:00
:language: java
:start-after: DOCSTART 35
:end-before: DOCEND 35
2017-10-07 11:48:16 +00:00
:dedent: 16
2017-06-05 12:37:23 +00:00
However, we'll often want to verify the transaction's existing signatures before all of them have been collected. For
this we can use ``SignedTransaction.verifySignaturesExcept``, which takes a ``vararg`` of the public keys for
which the signatures are allowed to be missing:
2017-06-05 12:37:23 +00:00
2017-07-07 11:06:10 +00:00
.. container:: codeset
2017-06-05 12:37:23 +00:00
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
2017-07-07 11:06:10 +00:00
:language: kotlin
:start-after: DOCSTART 36
:end-before: DOCEND 36
2017-10-07 11:48:16 +00:00
:dedent: 8
2017-06-05 12:37:23 +00:00
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
2017-07-07 11:06:10 +00:00
:language: java
:start-after: DOCSTART 36
:end-before: DOCEND 36
2017-10-07 11:48:16 +00:00
:dedent: 16
2017-06-05 12:37:23 +00:00
There is also an overload of ``SignedTransaction.verifySignaturesExcept``, which takes a ``Collection`` of the
public keys for which the signatures are allowed to be missing:
.. container:: codeset
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
:language: kotlin
:start-after: DOCSTART 54
:end-before: DOCEND 54
:dedent: 8
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
:language: java
:start-after: DOCSTART 54
:end-before: DOCEND 54
:dedent: 16
2017-07-07 11:06:10 +00:00
If the transaction is missing any signatures without the corresponding public keys being passed in, a
``SignaturesMissingException`` is thrown.
2017-06-05 12:37:23 +00:00
2017-07-07 11:06:10 +00:00
We can also choose to simply verify the signatures that are present:
2017-06-05 12:37:23 +00:00
2017-07-07 11:06:10 +00:00
.. container:: codeset
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
2017-07-07 11:06:10 +00:00
:language: kotlin
:start-after: DOCSTART 37
:end-before: DOCEND 37
2017-10-07 11:48:16 +00:00
:dedent: 8
2017-07-07 11:06:10 +00:00
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
2017-07-07 11:06:10 +00:00
:language: java
:start-after: DOCSTART 37
:end-before: DOCEND 37
2017-10-07 11:48:16 +00:00
:dedent: 16
2017-06-05 12:37:23 +00:00
Be very careful, however - this function neither guarantees that the signatures that are present are required, nor
checks whether any signatures are missing.
2017-06-05 12:37:23 +00:00
Signing the transaction
^^^^^^^^^^^^^^^^^^^^^^^
Once we are satisfied with the contents and existing signatures over the transaction, we add our signature to the
``SignedTransaction`` to indicate that we approve the transaction.
We can sign using our legal identity key, as follows:
2017-06-05 12:37:23 +00:00
.. container:: codeset
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
2017-07-07 11:06:10 +00:00
:language: kotlin
:start-after: DOCSTART 38
:end-before: DOCEND 38
2017-10-07 11:48:16 +00:00
:dedent: 8
2017-07-07 11:06:10 +00:00
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
2017-07-07 11:06:10 +00:00
:language: java
:start-after: DOCSTART 38
:end-before: DOCEND 38
:dedent: 12
2017-06-05 12:37:23 +00:00
Or we can choose to sign using another one of our public keys:
2017-06-05 12:37:23 +00:00
2017-07-07 11:06:10 +00:00
.. container:: codeset
2017-06-05 12:37:23 +00:00
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
2017-07-07 11:06:10 +00:00
:language: kotlin
:start-after: DOCSTART 39
:end-before: DOCEND 39
2017-10-07 11:48:16 +00:00
:dedent: 8
2017-07-07 11:06:10 +00:00
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
2017-07-07 11:06:10 +00:00
:language: java
:start-after: DOCSTART 39
:end-before: DOCEND 39
:dedent: 12
2017-06-05 12:37:23 +00:00
We can also generate a signature over the transaction without adding it to the transaction directly.
We can do this with our legal identity key:
2017-06-05 12:37:23 +00:00
.. container:: codeset
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
2017-07-07 11:06:10 +00:00
:language: kotlin
:start-after: DOCSTART 40
:end-before: DOCEND 40
2017-10-07 11:48:16 +00:00
:dedent: 8
2017-06-05 12:37:23 +00:00
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
2017-07-07 11:06:10 +00:00
:language: java
:start-after: DOCSTART 40
:end-before: DOCEND 40
:dedent: 12
2017-06-05 12:37:23 +00:00
Or using another one of our public keys:
2017-06-05 12:37:23 +00:00
2017-07-07 11:06:10 +00:00
.. container:: codeset
.. literalinclude:: ../../docs/source/example-code/src/main/kotlin/net/corda/docs/kotlin/FlowCookbook.kt
2017-07-07 11:06:10 +00:00
:language: kotlin
:start-after: DOCSTART 41
:end-before: DOCEND 41
2017-10-07 11:48:16 +00:00
:dedent: 8
2017-07-07 11:06:10 +00:00
.. literalinclude:: ../../docs/source/example-code/src/main/java/net/corda/docs/java/FlowCookbook.java
2017-07-07 11:06:10 +00:00
:language: java
:start-after: DOCSTART 41
:end-before: DOCEND 41
:dedent: 12
2017-06-05 12:37:23 +00:00
Notarising and recording
^^^^^^^^^^^^^^^^^^^^^^^^
Notarising and recording a transaction is handled by a built-in flow called ``FinalityFlow``. See :doc:`api-flows` for
more details.