Fix markdown logical structure in asset-transfer-events/README.md (#601)

Fenced code blocks within a list were at the wrong level if indentation and so logically terminated the list.

Signed-off-by: Mark S. Lewis <mark_lewis@uk.ibm.com>
This commit is contained in:
Mark S. Lewis 2022-01-27 19:19:49 +00:00 committed by GitHub
parent e33943cf4c
commit 6f2b9c9d9a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,7 +15,7 @@ page in the Fabric documentation.
## About the sample ## About the sample
This sample includes smart contract and application code in multiple languages. In a use-case similar to basic asset transfer (see `../asset-transfer-basic` folder) this sample shows sending and receiving of events during create / update / delete of an asset, and during transfer of an asset to a new owner. This sample includes smart contract and application code in multiple languages. In a use-case similar to basic asset transfer (see [asset-transfer-basic](../asset-transfer-basic) folder) this sample shows sending and receiving of events during create / update / delete of an asset, and during transfer of an asset to a new owner.
### Application ### Application
@ -47,7 +47,7 @@ Like other samples, the Fabric test network is used to deploy and run this sampl
./network.sh up createChannel -c mychannel -ca ./network.sh up createChannel -c mychannel -ca
``` ```
2. Deploy one of the smart contract implementations (from the `test-network` folder). 1. Deploy one of the smart contract implementations (from the `test-network` folder).
``` ```
# To deploy the JavaScript chaincode implementation # To deploy the JavaScript chaincode implementation
./network.sh deployCC -ccn events -ccp ../asset-transfer-events/chaincode-javascript/ -ccl javascript -ccep "OR('Org1MSP.peer','Org2MSP.peer')" ./network.sh deployCC -ccn events -ccp ../asset-transfer-events/chaincode-javascript/ -ccl javascript -ccep "OR('Org1MSP.peer','Org2MSP.peer')"
@ -56,7 +56,7 @@ Like other samples, the Fabric test network is used to deploy and run this sampl
./network.sh deployCC -ccn events -ccp ../asset-transfer-events/chaincode-java/ -ccl java -ccep "OR('Org1MSP.peer','Org2MSP.peer')" ./network.sh deployCC -ccn events -ccp ../asset-transfer-events/chaincode-java/ -ccl java -ccep "OR('Org1MSP.peer','Org2MSP.peer')"
``` ```
3. Run the application (from the `asset-transfer-events` folder). 1. Run the application (from the `asset-transfer-events` folder).
``` ```
# To run the Go sample application # To run the Go sample application
cd application-gateway-go cd application-gateway-go