From 377ccb0b59d5d940d9254c8f0bc29c2942c9186e Mon Sep 17 00:00:00 2001 From: nikhil550 Date: Fri, 18 Dec 2020 08:57:26 -0500 Subject: [PATCH] Add go smart contract language to deploy commands (#393) Signed-off-by: Nikhil Gupta Co-authored-by: Nikhil Gupta --- auction/README.md | 2 +- high-throughput/startFabric.sh | 2 +- token-erc-20/README.md | 2 +- token-utxo/README.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/auction/README.md b/auction/README.md index 1ab0cfc9..b0fef6fb 100644 --- a/auction/README.md +++ b/auction/README.md @@ -29,7 +29,7 @@ Note that we use the `-ca` flag to deploy the network using certificate authorit Run the following command to deploy the auction smart contract. We will override the default endorsement policy to allow any channel member to create an auction without requiring an endorsement from another organization. ``` -./network.sh deployCC -ccn auction -ccp ../auction/chaincode-go/ -ccep "OR('Org1MSP.peer','Org2MSP.peer')" +./network.sh deployCC -ccn auction -ccp ../auction/chaincode-go/ -ccep "OR('Org1MSP.peer','Org2MSP.peer')" -ccl go ``` ## Install the application dependencies diff --git a/high-throughput/startFabric.sh b/high-throughput/startFabric.sh index 50fe2324..a28fe3de 100755 --- a/high-throughput/startFabric.sh +++ b/high-throughput/startFabric.sh @@ -19,7 +19,7 @@ pushd ../test-network echo "Bring up test network" ./network.sh up createChannel -ca -./network.sh deployCC -ccn bigdatacc -ccp ../high-throughput/chaincode-go/ -ccep "OR('Org1MSP.peer','Org2MSP.peer')" -cci Init +./network.sh deployCC -ccn bigdatacc -ccp ../high-throughput/chaincode-go/ -ccep "OR('Org1MSP.peer','Org2MSP.peer')" -ccl go -cci Init popd cat <