Skip to content

Commit

Permalink
docs/source/channel_update_tutorial.rst: CHANNEL_NAME variable missin…
Browse files Browse the repository at this point in the history
…g in 2 places in channel update tutorial

The channel 'mychannel' is hardcoded in the middle of the channel update tutorial.
This looks like a silly typo, but when working with different channel names this can be a pain.

Signed-off-by: anoop <anoop@tuxera.com>
  • Loading branch information
anoop committed Nov 22, 2019
1 parent fc86d1a commit c18a194
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 @@ -820,7 +820,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 c18a194

Please sign in to comment.