mirror of
https://github.com/corda/corda.git
synced 2025-01-13 00:09:57 +00:00
* ENT-2298: CE Hello World Tutorial Page references Corda V1.0 Removed version number completely from text, I thought this made more sense than hardcoding a version which will almost immediately be out of date. * ENT-2302: Hello World Tutorial Page mismatch between code sample and explanatory text Updated text to proper method * ENT-2305: Java Instructions to Invoke Hello World CordApp fail Removed Java instructions
This commit is contained in:
parent
3a0b64fdb7
commit
721c835258
@ -140,7 +140,7 @@ Signing the transaction
|
|||||||
Now that we have a valid transaction proposal, we need to sign it. Once the transaction is signed, no-one will be able
|
Now that we have a valid transaction proposal, we need to sign it. Once the transaction is signed, no-one will be able
|
||||||
to modify the transaction without invalidating this signature. This effectively makes the transaction immutable.
|
to modify the transaction without invalidating this signature. This effectively makes the transaction immutable.
|
||||||
|
|
||||||
We sign the transaction using ``ServiceHub.toSignedTransaction``, which returns a ``SignedTransaction``. A
|
We sign the transaction using ``ServiceHub.signInitialTransaction``, which returns a ``SignedTransaction``. A
|
||||||
``SignedTransaction`` is an object that pairs a transaction with a list of signatures over that transaction.
|
``SignedTransaction`` is an object that pairs a transaction with a list of signatures over that transaction.
|
||||||
|
|
||||||
Finalising the transaction
|
Finalising the transaction
|
||||||
|
@ -109,10 +109,6 @@ We want to create an IOU of 99 with PartyB. We start the ``IOUFlow`` by typing:
|
|||||||
|
|
||||||
.. container:: codeset
|
.. container:: codeset
|
||||||
|
|
||||||
.. code-block:: java
|
|
||||||
|
|
||||||
start IOUFlow arg0: 99, arg1: "O=PartyB,L=New York,C=US"
|
|
||||||
|
|
||||||
.. code-block:: kotlin
|
.. code-block:: kotlin
|
||||||
|
|
||||||
start IOUFlow iouValue: 99, otherParty: "O=PartyB,L=New York,C=US"
|
start IOUFlow iouValue: 99, otherParty: "O=PartyB,L=New York,C=US"
|
||||||
|
@ -17,7 +17,7 @@ CorDapp onto a local test network of dummy nodes to test its functionality.
|
|||||||
|
|
||||||
CorDapps can be written in both Java and Kotlin, and will be providing the code in both languages in this tutorial.
|
CorDapps can be written in both Java and Kotlin, and will be providing the code in both languages in this tutorial.
|
||||||
|
|
||||||
Note that there's no need to download and install Corda itself. Corda V1.0's required libraries will be downloaded
|
Note that there's no need to download and install Corda itself. Corda's required libraries will be downloaded
|
||||||
automatically from an online Maven repository.
|
automatically from an online Maven repository.
|
||||||
|
|
||||||
Downloading the template
|
Downloading the template
|
||||||
|
Loading…
Reference in New Issue
Block a user