mirror of
https://github.com/corda/corda.git
synced 2024-12-20 05:28:21 +00:00
25 lines
1.3 KiB
ReStructuredText
25 lines
1.3 KiB
ReStructuredText
Introduction
|
|
============
|
|
|
|
.. note:: This tutorial extends the CorDapp built during the :doc:`Hello, World tutorial <hello-world-index>`. You can
|
|
find the final version of the CorDapp produced in that tutorial
|
|
`here <https://github.com/joeldudleyr3/tutorials/tree/master/Tut1Repo>`_.
|
|
|
|
In the Hello, World tutorial, we built a CorDapp allowing us to model IOUs on ledger. Our CorDapp was made up of three
|
|
elements:
|
|
|
|
* An ``IOUState``, representing IOUs on the ledger
|
|
* An ``IOUContract``, controlling the evolution of IOUs over time
|
|
* An ``IOUFlow``, orchestrating the process of agreeing the creation of an IOU on-ledger
|
|
|
|
However, in our original CorDapp, only the IOU's borrower was required to sign transactions issuing IOUs. The lender
|
|
had no say in whether the issuance of the IOU was a valid ledger update or not.
|
|
|
|
In this tutorial, we'll update our code so that the borrower requires the lender's agreement before they can issue an
|
|
IOU onto the ledger. We'll need to make two changes:
|
|
|
|
* The ``IOUContract`` will need to be updated so that transactions involving an ``IOUState`` will require the lender's
|
|
signature (as well as the borrower's) to become valid ledger updates
|
|
* The ``IOUFlow`` will need to be updated to allow for the gathering of the lender's signature
|
|
|
|
We'll start by updating the contract. |