Skip to content

Commit

Permalink
FAB-8218 Update dependencies.
Browse files Browse the repository at this point in the history
Change-Id: I39625dbddbdb749145fd9f6090bc0e596a6ccf0d
Signed-off-by: rickr <cr22rc@gmail.com>
  • Loading branch information
cr22rc committed Feb 18, 2018
1 parent 09776f0 commit 7c768d6
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 9 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<tag>fabric-sdk-java-1.0</tag>
</scm>
<properties>
<grpc.version>1.9.0</grpc.version><!-- CURRENT_GRPC_VERSION -->
<grpc.version>1.10.0</grpc.version><!-- CURRENT_GRPC_VERSION -->
<bouncycastle.version>1.59</bouncycastle.version>
<httpclient.version>4.5.5</httpclient.version>
<skipITs>true</skipITs>
Expand Down Expand Up @@ -96,7 +96,7 @@
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http2</artifactId>
<version>4.1.20.Final</version>
<version>4.1.21.Final</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.protobuf/protobuf-java -->
<dependency>
Expand Down Expand Up @@ -124,7 +124,7 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-compress</artifactId>
<version>1.15</version>
<version>1.16.1</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,9 +189,6 @@ private static IndexedHashMap<String, MSPPrincipal> parseIdentities(Map<?, ?> id
case "peer":
mspRoleType = MSPRole.MSPRoleType.PEER;
break;
case "orderer":
mspRoleType = MSPRole.MSPRoleType.ORDERER;
break;
default:
throw new ChaincodeEndorsementPolicyParseException(format("In identities with key %s name expected member, admin, client, peer or orderer in role got %s ", key, name));
}
Expand Down
2 changes: 0 additions & 2 deletions src/main/proto/msp/msp_config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,4 @@ message FabricNodeOUs {
// OU Identifier of the peers
FabricOUIdentifier peerOUIdentifier = 3;

// OU Identifier of the orderers
FabricOUIdentifier ordererOUIdentifier = 4;
}
1 change: 0 additions & 1 deletion src/main/proto/msp/msp_principal.proto
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ message MSPRole {
ADMIN = 1; // Represents an MSP Admin
CLIENT = 2; // Represents an MSP Client
PEER = 3; // Represents an MSP Peer
ORDERER = 4; // Represents an MSP Orderer
}

// MSPRoleType defines which of the available, pre-defined MSP-roles
Expand Down

0 comments on commit 7c768d6

Please sign in to comment.