Update tut-two-party-flow.rst (#3133)

Bug: https://github.com/corda/corda/issues/3120
Updated line 55: From: IOUContract.Commands.Create -> IOUContract.Create
This commit is contained in:
kid101 2018-05-14 16:39:53 +05:30 committed by Joel Dudley
parent 3c005789c0
commit e3bc7fa0af

View File

@ -52,7 +52,7 @@ In the original CorDapp, we automated the process of notarising a transaction an
by invoking a built-in flow called ``FinalityFlow`` as a subflow. We're going to use another pre-defined flow,
``CollectSignaturesFlow``, to gather the borrower's signature.
First, we need to update the command. We are now using ``IOUContract.Commands.Create``, rather than
First, we need to update the command. We are now using ``IOUContract.Create``, rather than
``TemplateContract.Commands.Action``. We also want to make the borrower a required signer, as per the contract
constraints. This is as simple as adding the borrower's public key to the transaction's command.