Skip to content

Commit

Permalink
fix function name typo in store private data command
Browse files Browse the repository at this point in the history
Signed-off-by: Salmandabbakuti <Salmandabbakuti@github.com>
  • Loading branch information
Salmandabbakuti authored and ale-linux committed Sep 18, 2020
1 parent ffcbf25 commit 3ee47a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/private_data_tutorial.rst
Expand Up @@ -535,7 +535,7 @@ problematic newline characters that linux base64 command adds.
.. code:: bash
export MARBLE=$(echo -n "{\"name\":\"marble1\",\"color\":\"blue\",\"size\":35,\"owner\":\"tom\",\"price\":99}" | base64 | tr -d \\n)
peer chaincode invoke -o localhost:7050 --ordererTLSHostnameOverride orderer.example.com --tls --cafile ${PWD}/organizations/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -C mychannel -n marblesp -c '{"Args":["InitMarble"]}' --transient "{\"marble\":\"$MARBLE\"}"
peer chaincode invoke -o localhost:7050 --ordererTLSHostnameOverride orderer.example.com --tls --cafile ${PWD}/organizations/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -C mychannel -n marblesp -c '{"Args":["initMarble"]}' --transient "{\"marble\":\"$MARBLE\"}"
You should see results similar to:

Expand Down

0 comments on commit 3ee47a7

Please sign in to comment.