Skip to content

Commit

Permalink
[FAB-17128] Make channel name env var
Browse files Browse the repository at this point in the history
In channel update, change command to
make the channel name an environment
variable, rather than hard coded

Change-Id: Ifc5c3e7907672fce798bf44022d3184415e85e0a
Signed-off-by: joe-alewine <Joe.Alewine@ibm.com>
  • Loading branch information
joe-alewine authored and denyeart committed Dec 10, 2019
1 parent d8fac8a commit 20ea5df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/channel_update_tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ earlier. We'll name this file ``org3_update_in_envelope.json``:

.. code:: bash
echo '{"payload":{"header":{"channel_header":{"channel_id":"mychannel", "type":2}},"data":{"config_update":'$(cat org3_update.json)'}}}' | jq . > org3_update_in_envelope.json
echo '{"payload":{"header":{"channel_header":{"channel_id":"$CHANNEL_NAME", "type":2}},"data":{"config_update":'$(cat org3_update.json)'}}}' | jq . > org3_update_in_envelope.json
Using our properly formed JSON -- ``org3_update_in_envelope.json`` -- we will
leverage the ``configtxlator`` tool one last time and convert it into the
Expand Down Expand Up @@ -790,7 +790,7 @@ stripped away header, outputting it to ``anchor_update_in_envelope.json``

.. code:: bash
echo '{"payload":{"header":{"channel_header":{"channel_id":"mychannel", "type":2}},"data":{"config_update":'$(cat anchor_update.json)'}}}' | jq . > anchor_update_in_envelope.json
echo '{"payload":{"header":{"channel_header":{"channel_id":"$CHANNEL_NAME", "type":2}},"data":{"config_update":'$(cat anchor_update.json)'}}}' | jq . > anchor_update_in_envelope.json
Now that we have reincorporated the envelope we need to convert it
to a protobuf so it can be properly signed and submitted to the orderer for the update.
Expand Down

0 comments on commit 20ea5df

Please sign in to comment.