mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 23:45:10 +00:00
`--tls` option of the peer command does not require any argument. On the other hand, some scripts assign the arguments. This patch deletes the unnecessary arguments. Also, this patch fixes a minor problem on private data tutorial instructions for base64 (Related to FAB-13777). Signed-off-by: Tatsuya Sato <Tatsuya.Sato@hal.hitachi.com>
9 lines
409 B
Bash
Executable file
9 lines
409 B
Bash
Executable file
#
|
|
# Copyright IBM Corp All Rights Reserved
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
source scripts/setenv.sh
|
|
|
|
peer chaincode invoke -o localhost:7050 --ordererTLSHostnameOverride orderer.example.com --tls --cafile ../test-network/organizations/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -C mychannel -n bigdatacc -c '{"Args":["delete","'$1'"]}'
|