Skip to content

Commit

Permalink
[FAB-7653] Fix incorrect chaincode location
Browse files Browse the repository at this point in the history
Fix the chaincode location by adding "go" subdirectory to path.

Change-Id: Idc72a0f4fcecf519d49a68d141025ada054cf847
Signed-off-by: Keith Smith <bksmith@us.ibm.com>
  • Loading branch information
Keith Smith committed Jan 8, 2018
1 parent 5a974a4 commit 5eb2fb2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion balance-transfer/typescript/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ curl -s -X POST \
-d '{
"peers": ["peer1","peer2"],
"chaincodeName":"mycc",
"chaincodePath":"github.com/example_cc",
"chaincodePath":"github.com/example_cc/go",
"chaincodeVersion":"v0"
}'
```
Expand Down
4 changes: 2 additions & 2 deletions balance-transfer/typescript/testAPIs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ curl -s -X POST \
-d '{
"peers": ["peer1", "peer2"],
"chaincodeName":"mycc",
"chaincodePath":"github.com/example_cc",
"chaincodePath":"github.com/example_cc/go",
"chaincodeVersion":"v0"
}'
echo
Expand All @@ -98,7 +98,7 @@ curl -s -X POST \
-d '{
"peers": ["peer1","peer2"],
"chaincodeName":"mycc",
"chaincodePath":"github.com/example_cc",
"chaincodePath":"github.com/example_cc/go",
"chaincodeVersion":"v0"
}'
echo
Expand Down

0 comments on commit 5eb2fb2

Please sign in to comment.