From 5a4db990e72bc330ddfb9aa64f090f7ee52841b2 Mon Sep 17 00:00:00 2001 From: Roger Willis Date: Wed, 20 Feb 2019 17:05:36 +0000 Subject: [PATCH] Update tutorial-building-transactions.rst Addressed @tudor-malene's comment --- docs/source/tutorial-building-transactions.rst | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/docs/source/tutorial-building-transactions.rst b/docs/source/tutorial-building-transactions.rst index 61bc5beb90..e645ed3ce9 100644 --- a/docs/source/tutorial-building-transactions.rst +++ b/docs/source/tutorial-building-transactions.rst @@ -48,11 +48,7 @@ Transactions in Corda contain a number of elements: period during which the proposed transaction can be committed to the ledger -A transaction is built by populating a ``TransactionBuilder``. - -Once the builder is fully populated, the flow should freeze the ``TransactionBuilder`` by signing it to create a -``SignedTransaction``. This is key to the ledger agreement process - once a flow has attached a node’s signature to a -transaction, it has effectively stated that it accepts all the details of the transaction. +A transaction is built by populating a ``TransactionBuilder``. Once the builder is fully populated, the flow should freeze the ``TransactionBuilder`` by signing it to create a ``SignedTransaction``. This is key to the ledger agreement process - once a flow has attached a node’s signature to a transaction, it has effectively stated that it accepts all the details of the transaction. It is best practice for flows to receive back the ``TransactionSignature`` of other parties rather than a full ``SignedTransaction`` objects, because otherwise we have to separately check that this is still the same @@ -295,4 +291,4 @@ overall transaction id is still provable from the not expose that data to the other node directly. A full example of this can be found in the ``NodeInterestRates`` Oracle code from the ``irs-demo`` project which interacts with the ``RatesFixFlow`` flow. -Also, refer to the :doc:`tutorial-tear-offs`. \ No newline at end of file +Also, refer to the :doc:`tutorial-tear-offs`.