Skip to content

Commit

Permalink
FAB-6133 Fix typo in configtxupdate README
Browse files Browse the repository at this point in the history
Change-Id: I00c380c5d53d28eb8d7674825bdd2d3540910e30
Signed-off-by: Gari Singh <gari.r.singh@gmail.com>
  • Loading branch information
mastersingh24 committed Oct 3, 2017
1 parent 60a5153 commit 3069430
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/configtxupdate/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,14 +106,14 @@ Edit the `genesis_block.json` file in your favorite JSON editor, or manipulate i
```
$ export MAXBATCHSIZEPATH=".data.data[0].payload.data.config.channel_group.groups.Orderer.values.BatchSize.value.max_message_count"
# Display the old batch size
$ jq "$MAXBATCHSIZEPATH" genesis_block.json
$ jq "$MAXBATCHSIZEPATH" genesis_block.json
10
# Set the new batch size
$ jq "$MAXBATCHSIZEPATH = 20" genesis_block.json > updated_genesis_block.json
# Display the new batch size
$ jq "$MAXBATCHSIZEPATH" updated_genesis_block.json
$ jq "$MAXBATCHSIZEPATH" updated_genesis_block.json
20
```
The genesis block is now ready to be re-encoded into the native proto form to be used for bootstrapping.
Expand Down Expand Up @@ -281,7 +281,7 @@ CGO_CFLAGS=" " GOBIN=/home/yellickj/go/src/github.com/hyperledger/fabric/build/b
Binary available as build/bin/orderer
```

Start the orderer using the `SampleDevModSolo` profile option.
Start the orderer using the `SampleDevModeSolo` profile option.

```
ORDERER_GENERAL_LOGLEVEL=debug ORDERER_GENERAL_GENESISPROFILE=SampleDevModeSolo orderer
Expand Down

0 comments on commit 3069430

Please sign in to comment.