Skip to content

Commit

Permalink
Merge "[FAB-2694] (PA) Fix some upper case proto fields"
Browse files Browse the repository at this point in the history
  • Loading branch information
mastersingh24 authored and Gerrit Code Review committed Mar 24, 2017
2 parents 8888892 + 07320ea commit 12fe6a3
Show file tree
Hide file tree
Showing 6 changed files with 69 additions and 69 deletions.
52 changes: 26 additions & 26 deletions protos/common/msp_principal.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion protos/common/msp_principal.proto
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ message MSPRole {

// MSPRoleType defines which of the available, pre-defined MSP-roles
// an identiy should posess inside the MSP with identifier MSPidentifier
MSPRoleType Role = 2;
MSPRoleType role = 2;

}

Expand Down
56 changes: 28 additions & 28 deletions protos/common/policies.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion protos/common/policies.proto
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ message SignaturePolicyEnvelope {
// and will be the CA for more traditional certificates
message SignaturePolicy {
message NOutOf {
int32 N = 1;
int32 n = 1;
repeated SignaturePolicy policies = 2;
}
oneof Type {
Expand Down
22 changes: 11 additions & 11 deletions protos/msp/identities.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions protos/msp/identities.proto
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ package msp;
// to serialize it and deserialize it
message SerializedIdentity {
// The identifier of the associated membership service provider
string Mspid = 1;
string mspid = 1;

// the Identity, serialized according to the rules of its MPS
bytes IdBytes = 2;
bytes id_bytes = 2;
}

0 comments on commit 12fe6a3

Please sign in to comment.