mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
Changed README.md to instruct user to edit byfn.sh instead of docker-compose-cli file since this is where the standard BFYN script is now run. Also added missing Copyright notices. Change-Id: Ib18afe8a23cc3874729031a82480aac5b0a2b555 Signed-off-by: Arnaud J Le Hors <lehors@us.ibm.com>
9 lines
496 B
Bash
Executable file
9 lines
496 B
Bash
Executable file
#
|
|
# Copyright IBM Corp All Rights Reserved
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
echo "========== Instantiating chaincode v$1 =========="
|
|
peer chaincode instantiate -o orderer.example.com:7050 --tls $CORE_PEER_TLS_ENABLED --cafile /opt/gopath/src/github.com/hyperledger/fabric/peer/crypto/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -C $CHANNEL_NAME -n $CC_NAME -c '{"Args": []}' -v $1 -P "OR ('Org1MSP.member','Org2MSP.member')"
|
|
|