mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-20 16:45:09 +00:00
[FAB-7653] Fix incorrect chaincode location
Fix the chaincode location by adding "go" subdirectory to path. Change-Id: Idc72a0f4fcecf519d49a68d141025ada054cf847 Signed-off-by: Keith Smith <bksmith@us.ibm.com>
This commit is contained in:
parent
5a974a42e0
commit
5eb2fb2ff6
2 changed files with 3 additions and 3 deletions
|
|
@ -152,7 +152,7 @@ curl -s -X POST \
|
||||||
-d '{
|
-d '{
|
||||||
"peers": ["peer1","peer2"],
|
"peers": ["peer1","peer2"],
|
||||||
"chaincodeName":"mycc",
|
"chaincodeName":"mycc",
|
||||||
"chaincodePath":"github.com/example_cc",
|
"chaincodePath":"github.com/example_cc/go",
|
||||||
"chaincodeVersion":"v0"
|
"chaincodeVersion":"v0"
|
||||||
}'
|
}'
|
||||||
```
|
```
|
||||||
|
|
|
||||||
|
|
@ -82,7 +82,7 @@ curl -s -X POST \
|
||||||
-d '{
|
-d '{
|
||||||
"peers": ["peer1", "peer2"],
|
"peers": ["peer1", "peer2"],
|
||||||
"chaincodeName":"mycc",
|
"chaincodeName":"mycc",
|
||||||
"chaincodePath":"github.com/example_cc",
|
"chaincodePath":"github.com/example_cc/go",
|
||||||
"chaincodeVersion":"v0"
|
"chaincodeVersion":"v0"
|
||||||
}'
|
}'
|
||||||
echo
|
echo
|
||||||
|
|
@ -98,7 +98,7 @@ curl -s -X POST \
|
||||||
-d '{
|
-d '{
|
||||||
"peers": ["peer1","peer2"],
|
"peers": ["peer1","peer2"],
|
||||||
"chaincodeName":"mycc",
|
"chaincodeName":"mycc",
|
||||||
"chaincodePath":"github.com/example_cc",
|
"chaincodePath":"github.com/example_cc/go",
|
||||||
"chaincodeVersion":"v0"
|
"chaincodeVersion":"v0"
|
||||||
}'
|
}'
|
||||||
echo
|
echo
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue