You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[FAB-4337] Fix proto style in batchsize config msg
This is a proto message that slipped through the proto style
normalization.
It's a safe change from a go API perspective, and it is ABI compatible
with the existing protos, so no existing consumers should be affected.
This is important to fix however, because reconfiguration is finally
available, and these field names are finally user visible. Fixing this
soon should have minimal impact, but may have more impact in the future
once more people are familiar with the config contents.
Change-Id: I7b21f72776088e66be45c72ed869a43b7153b0d5
Signed-off-by: Jason Yellick <[email protected]>
Copy file name to clipboardexpand all lines: examples/configtxupdate/README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# Reconfiguraing with configtxlator
1
+
# Reconfiguring with configtxlator
2
2
3
3
## Overview
4
4
@@ -92,7 +92,7 @@ curl -X POST --data-binary @genesis_block.proto http://127.0.0.1:7059/protolator
92
92
```
93
93
Edit the `genesis_block.json` file in your favorite JSON editor, or manipulate it programatically, here, we use the JSON CLI tool `jq`. For simplicity, we are editing the batch size for the channel, because it is a single numeric field, but any edits, including policy and MSP edits may be made here.
curl -X POST --data-binary @config_update_as_envelope.json http://127.0.0.1:7059/protolator/encode/common.Envelope > config_update_as_envelope.proto || die "Error converting envelope to proto"
0 commit comments