You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/chaincode4ade.rst
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ the channel ledger.
39
39
40
40
You also need to include an ``Init`` method that will serve as the initialization
41
41
function for your chaincode. This method will be called in order to initialize
42
-
the chaincode when it is started or upgraded. By default, this function is never
42
+
the chaincode when it is started or upgraded. By default, this function is never
43
43
executed. However, you can use the chaincode definition to request that the ``Init``
44
44
function be executed. If execution of ``Init`` is requested, fabric will ensure
45
45
that ``Init`` is invoked before any other function and is only invoked once.
@@ -49,7 +49,7 @@ the peer CLI to approve the chaincode definition, use the ``--init-required``
49
49
flag to request the execution of the ``Init`` function. Then call the ``Init``
50
50
function by using the `peer chaincode invoke` command and passing the
51
51
``--isInit`` flag. If you are using the Fabric SDK for Node.js, visit
52
-
[How to install and start your chaincode](https://fabric-sdk-node.github.io/master/tutorial-chaincode-lifecycle.html). For more information, see :doc:`chaincode4noah`.
52
+
`How to install and start your chaincode<https://fabric-sdk-node.github.io/master/tutorial-chaincode-lifecycle.html>`__. For more information, see :doc:`chaincode4noah`.
53
53
54
54
The other interface in the chaincode "shim" APIs is the ``ChaincodeStubInterface``:
0 commit comments