From e02e9f4d129106853fceab3dd492a9dcbc80fe6e Mon Sep 17 00:00:00 2001 From: Jon Date: Thu, 13 Feb 2020 16:12:50 +0100 Subject: [PATCH] test-network deployCC.sh invoke chaincode inconsistency Keep consistency of the function called in the "no TLS" and "with TLS" cases Signed-off-by: Jon Signed-off-by: Jonathan Gross --- test-network/scripts/deployCC.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-network/scripts/deployCC.sh b/test-network/scripts/deployCC.sh index b1a60aa2..725b86cf 100755 --- a/test-network/scripts/deployCC.sh +++ b/test-network/scripts/deployCC.sh @@ -222,7 +222,7 @@ chaincodeInvokeInit() { set +x else set -x - peer chaincode invoke -o localhost:7050 --ordererTLSHostnameOverride orderer.example.com --tls $CORE_PEER_TLS_ENABLED --cafile $ORDERER_CA -C $CHANNEL_NAME -n fabcar $PEER_CONN_PARMS --isInit -c '{"function":"initLedger","Args":[]}' >&log.txt + peer chaincode invoke -o localhost:7050 --ordererTLSHostnameOverride orderer.example.com --tls $CORE_PEER_TLS_ENABLED --cafile $ORDERER_CA -C $CHANNEL_NAME -n fabcar $PEER_CONN_PARMS --isInit -c '{"function":"init","Args":[]}' >&log.txt res=$? set +x fi