diff --git a/go.mod b/go.mod index e2b286cf65..768efa7fe1 100644 --- a/go.mod +++ b/go.mod @@ -19,7 +19,7 @@ require ( github.com/google/certificate-transparency-go v0.0.0-20180222191210-5ab67e519c93 // indirect github.com/hashicorp/hcl v0.0.0-20180404174102-ef8a98b0bbce // indirect github.com/hyperledger/fabric-lib-go v1.0.0 - github.com/hyperledger/fabric-protos-go v0.0.0-20190821180310-6b6ac9042dfd + github.com/hyperledger/fabric-protos-go v0.0.0-20191121202242-f5500d5e3e85 github.com/kr/pretty v0.1.0 // indirect github.com/magiconair/properties v1.7.6 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect diff --git a/go.sum b/go.sum index 60af01de63..891efaee76 100644 --- a/go.sum +++ b/go.sum @@ -41,8 +41,8 @@ github.com/hpcloud/tail v1.0.0 h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= github.com/hyperledger/fabric-lib-go v1.0.0 h1:UL1w7c9LvHZUSkIvHTDGklxFv2kTeva1QI2emOVc324= github.com/hyperledger/fabric-lib-go v1.0.0/go.mod h1:H362nMlunurmHwkYqR5uHL2UDWbQdbfz74n8kbCFsqc= -github.com/hyperledger/fabric-protos-go v0.0.0-20190821180310-6b6ac9042dfd h1:z0IbaMd4Ry2Cmmxujzy4UDgCUsT/0dOqqoGtOcvDw9Q= -github.com/hyperledger/fabric-protos-go v0.0.0-20190821180310-6b6ac9042dfd/go.mod h1:xVYTjK4DtZRBxZ2D9aE4y6AbLaPwue2o/criQyQbVD0= +github.com/hyperledger/fabric-protos-go v0.0.0-20191121202242-f5500d5e3e85 h1:bNgEcCg5NVRWs/T+VUEfhgh5Olx/N4VB+0+ybW+oSuA= +github.com/hyperledger/fabric-protos-go v0.0.0-20191121202242-f5500d5e3e85/go.mod h1:xVYTjK4DtZRBxZ2D9aE4y6AbLaPwue2o/criQyQbVD0= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515 h1:T+h1c/A9Gawja4Y9mFVWj2vyii2bbUNDw3kt9VxK2EY= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= diff --git a/pkg/client/resmgmt/lscc.go b/pkg/client/resmgmt/lscc.go index 7addf445c7..de28b5dc44 100644 --- a/pkg/client/resmgmt/lscc.go +++ b/pkg/client/resmgmt/lscc.go @@ -41,7 +41,7 @@ type chaincodeDeployRequest struct { Version string Args [][]byte Policy *common.SignaturePolicyEnvelope - CollConfig []*common.CollectionConfig + CollConfig []*pb.CollectionConfig } // createChaincodeDeployProposal creates an instantiate or upgrade chaincode proposal. @@ -70,7 +70,7 @@ func createChaincodeDeployProposal(txh fab.TransactionHeader, deploy chaincodePr args = append(args, []byte(vscc)) if chaincode.CollConfig != nil { - collConfigBytes, err := proto.Marshal(&common.CollectionConfigPackage{Config: chaincode.CollConfig}) + collConfigBytes, err := proto.Marshal(&pb.CollectionConfigPackage{Config: chaincode.CollConfig}) if err != nil { return nil, errors.WithMessage(err, "marshal of collection policy failed") } diff --git a/pkg/client/resmgmt/resmgmt.go b/pkg/client/resmgmt/resmgmt.go index 3f061c2035..1e51267d17 100644 --- a/pkg/client/resmgmt/resmgmt.go +++ b/pkg/client/resmgmt/resmgmt.go @@ -74,7 +74,7 @@ type InstantiateCCRequest struct { Version string Args [][]byte Policy *common.SignaturePolicyEnvelope - CollConfig []*common.CollectionConfig + CollConfig []*pb.CollectionConfig } // InstantiateCCResponse contains response parameters for instantiate chaincode @@ -89,7 +89,7 @@ type UpgradeCCRequest struct { Version string Args [][]byte Policy *common.SignaturePolicyEnvelope - CollConfig []*common.CollectionConfig + CollConfig []*pb.CollectionConfig } // UpgradeCCResponse contains response parameters for upgrade chaincode @@ -618,7 +618,7 @@ func (rc *Client) QueryInstantiatedChaincodes(channelID string, options ...Reque // // Returns: // list of collections config -func (rc *Client) QueryCollectionsConfig(channelID string, chaincodeName string, options ...RequestOption) (*common.CollectionConfigPackage, error) { +func (rc *Client) QueryCollectionsConfig(channelID string, chaincodeName string, options ...RequestOption) (*pb.CollectionConfigPackage, error) { opts, err := rc.prepareRequestOpts(options...) if err != nil { return nil, err diff --git a/pkg/fab/channel/ledger.go b/pkg/fab/channel/ledger.go index b0edfa4c6b..a693fe4b61 100644 --- a/pkg/fab/channel/ledger.go +++ b/pkg/fab/channel/ledger.go @@ -209,11 +209,11 @@ func createChaincodeQueryResponse(tpr *fab.TransactionProposalResponse) (*pb.Cha } // QueryCollectionsConfig queries the collections config for a chaincode on this channel. -func (c *Ledger) QueryCollectionsConfig(reqCtx reqContext.Context, chaincodeName string, targets []fab.ProposalProcessor, verifier ResponseVerifier) ([]*common.CollectionConfigPackage, error) { +func (c *Ledger) QueryCollectionsConfig(reqCtx reqContext.Context, chaincodeName string, targets []fab.ProposalProcessor, verifier ResponseVerifier) ([]*pb.CollectionConfigPackage, error) { cir := createCollectionsConfigInvokeRequest(chaincodeName) tprs, errs := queryChaincode(reqCtx, c.chName, cir, targets, verifier) - responses := []*common.CollectionConfigPackage{} + responses := []*pb.CollectionConfigPackage{} for _, tpr := range tprs { r, err := createCollectionsConfigQueryResponse(tpr) if err != nil { @@ -225,8 +225,8 @@ func (c *Ledger) QueryCollectionsConfig(reqCtx reqContext.Context, chaincodeName return responses, errs } -func createCollectionsConfigQueryResponse(tpr *fab.TransactionProposalResponse) (*common.CollectionConfigPackage, error) { - response := common.CollectionConfigPackage{} +func createCollectionsConfigQueryResponse(tpr *fab.TransactionProposalResponse) (*pb.CollectionConfigPackage, error) { + response := pb.CollectionConfigPackage{} err := proto.Unmarshal(tpr.ProposalResponse.GetResponse().Payload, &response) if err != nil { return nil, errors.Wrap(err, "unmarshal of transaction proposal response failed") diff --git a/test/integration/base_test_setup.go b/test/integration/base_test_setup.go index e548308515..cbb90eff9c 100644 --- a/test/integration/base_test_setup.go +++ b/test/integration/base_test_setup.go @@ -12,7 +12,7 @@ import ( "path/filepath" "testing" - cb "github.com/hyperledger/fabric-protos-go/common" + pb "github.com/hyperledger/fabric-protos-go/peer" "github.com/hyperledger/fabric-sdk-go/pkg/client/channel" mspclient "github.com/hyperledger/fabric-sdk-go/pkg/client/msp" "github.com/hyperledger/fabric-sdk-go/pkg/client/resmgmt" @@ -294,7 +294,7 @@ func InstallChaincode(resMgmt *resmgmt.Client, ccPkg *resource.CCPackage, ccPath } // InstantiateChaincode instantiates the given chaincode to the given channel -func InstantiateChaincode(resMgmt *resmgmt.Client, channelID, ccName, ccPath, ccVersion string, ccPolicyStr string, args [][]byte, collConfigs ...*cb.CollectionConfig) (resmgmt.InstantiateCCResponse, error) { +func InstantiateChaincode(resMgmt *resmgmt.Client, channelID, ccName, ccPath, ccVersion string, ccPolicyStr string, args [][]byte, collConfigs ...*pb.CollectionConfig) (resmgmt.InstantiateCCResponse, error) { ccPolicy, err := cauthdsl.FromString(ccPolicyStr) if err != nil { return resmgmt.InstantiateCCResponse{}, errors.Wrapf(err, "error creating CC policy [%s]", ccPolicyStr) @@ -315,7 +315,7 @@ func InstantiateChaincode(resMgmt *resmgmt.Client, channelID, ccName, ccPath, cc } // UpgradeChaincode upgrades the given chaincode on the given channel -func UpgradeChaincode(resMgmt *resmgmt.Client, channelID, ccName, ccPath, ccVersion string, ccPolicyStr string, args [][]byte, collConfigs ...*cb.CollectionConfig) (resmgmt.UpgradeCCResponse, error) { +func UpgradeChaincode(resMgmt *resmgmt.Client, channelID, ccName, ccPath, ccVersion string, ccPolicyStr string, args [][]byte, collConfigs ...*pb.CollectionConfig) (resmgmt.UpgradeCCResponse, error) { ccPolicy, err := cauthdsl.FromString(ccPolicyStr) if err != nil { return resmgmt.UpgradeCCResponse{}, errors.Wrapf(err, "error creating CC policy [%s]", ccPolicyStr) diff --git a/test/integration/go.mod b/test/integration/go.mod index 3c00fad4a6..0c5c591da7 100644 --- a/test/integration/go.mod +++ b/test/integration/go.mod @@ -8,7 +8,7 @@ replace github.com/hyperledger/fabric-sdk-go => ../../ require ( github.com/golang/protobuf v1.3.2 - github.com/hyperledger/fabric-protos-go v0.0.0-20190823190507-26c33c998676 + github.com/hyperledger/fabric-protos-go v0.0.0-20191121202242-f5500d5e3e85 github.com/hyperledger/fabric-sdk-go v0.0.0-00010101000000-000000000000 github.com/pkg/errors v0.8.1 github.com/stretchr/testify v1.3.0 diff --git a/test/integration/go.sum b/test/integration/go.sum index 11455e4395..7888eac72a 100644 --- a/test/integration/go.sum +++ b/test/integration/go.sum @@ -41,10 +41,8 @@ github.com/hpcloud/tail v1.0.0 h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= github.com/hyperledger/fabric-lib-go v1.0.0 h1:UL1w7c9LvHZUSkIvHTDGklxFv2kTeva1QI2emOVc324= github.com/hyperledger/fabric-lib-go v1.0.0/go.mod h1:H362nMlunurmHwkYqR5uHL2UDWbQdbfz74n8kbCFsqc= -github.com/hyperledger/fabric-protos-go v0.0.0-20190821180310-6b6ac9042dfd h1:z0IbaMd4Ry2Cmmxujzy4UDgCUsT/0dOqqoGtOcvDw9Q= -github.com/hyperledger/fabric-protos-go v0.0.0-20190821180310-6b6ac9042dfd/go.mod h1:xVYTjK4DtZRBxZ2D9aE4y6AbLaPwue2o/criQyQbVD0= -github.com/hyperledger/fabric-protos-go v0.0.0-20190823190507-26c33c998676 h1:35/AU/6kOZgrblvSjglQ6yoz3opCKTpfoMjQygtCD/U= -github.com/hyperledger/fabric-protos-go v0.0.0-20190823190507-26c33c998676/go.mod h1:xVYTjK4DtZRBxZ2D9aE4y6AbLaPwue2o/criQyQbVD0= +github.com/hyperledger/fabric-protos-go v0.0.0-20191121202242-f5500d5e3e85 h1:bNgEcCg5NVRWs/T+VUEfhgh5Olx/N4VB+0+ybW+oSuA= +github.com/hyperledger/fabric-protos-go v0.0.0-20191121202242-f5500d5e3e85/go.mod h1:xVYTjK4DtZRBxZ2D9aE4y6AbLaPwue2o/criQyQbVD0= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515 h1:T+h1c/A9Gawja4Y9mFVWj2vyii2bbUNDw3kt9VxK2EY= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= diff --git a/test/integration/pkg/client/channel/channel_client_pvt_test.go b/test/integration/pkg/client/channel/channel_client_pvt_test.go index f722e3a085..d9c95a74fb 100644 --- a/test/integration/pkg/client/channel/channel_client_pvt_test.go +++ b/test/integration/pkg/client/channel/channel_client_pvt_test.go @@ -16,6 +16,7 @@ import ( "testing" "time" + pb "github.com/hyperledger/fabric-protos-go/peer" "github.com/hyperledger/fabric-sdk-go/pkg/common/errors/retry" "github.com/hyperledger/fabric-sdk-go/pkg/common/errors/status" @@ -27,7 +28,6 @@ import ( "github.com/hyperledger/fabric-sdk-go/pkg/client/channel" "github.com/hyperledger/fabric-sdk-go/pkg/common/providers/fab" "github.com/hyperledger/fabric-sdk-go/third_party/github.com/hyperledger/fabric/common/cauthdsl" - cb "github.com/hyperledger/fabric-protos-go/common" "github.com/hyperledger/fabric-sdk-go/pkg/fabsdk" "github.com/hyperledger/fabric-sdk-go/test/integration" @@ -345,19 +345,19 @@ func TestChannelClientRollsBackPvtDataIfMvccReadConflict(t *testing.T) { assert.Truef(t, actual == expected, "Private data not rolled back during MVCC_READ_CONFLICT") } -func newCollectionConfig(colName, policy string, reqPeerCount, maxPeerCount int32, blockToLive uint64) (*cb.CollectionConfig, error) { +func newCollectionConfig(colName, policy string, reqPeerCount, maxPeerCount int32, blockToLive uint64) (*pb.CollectionConfig, error) { p, err := cauthdsl.FromString(policy) if err != nil { return nil, err } - cpc := &cb.CollectionPolicyConfig{ - Payload: &cb.CollectionPolicyConfig_SignaturePolicy{ + cpc := &pb.CollectionPolicyConfig{ + Payload: &pb.CollectionPolicyConfig_SignaturePolicy{ SignaturePolicy: p, }, } - return &cb.CollectionConfig{ - Payload: &cb.CollectionConfig_StaticCollectionConfig{ - StaticCollectionConfig: &cb.StaticCollectionConfig{ + return &pb.CollectionConfig{ + Payload: &pb.CollectionConfig_StaticCollectionConfig{ + StaticCollectionConfig: &pb.StaticCollectionConfig{ Name: colName, MemberOrgsPolicy: cpc, RequiredPeerCount: reqPeerCount, diff --git a/test/integration/pkg/client/common/selection/fabricselection_test.go b/test/integration/pkg/client/common/selection/fabricselection_test.go index 2d271ea3c3..18852933a8 100644 --- a/test/integration/pkg/client/common/selection/fabricselection_test.go +++ b/test/integration/pkg/client/common/selection/fabricselection_test.go @@ -17,6 +17,7 @@ import ( "github.com/stretchr/testify/require" + pb "github.com/hyperledger/fabric-protos-go/peer" "github.com/hyperledger/fabric-sdk-go/pkg/client/common/selection/fabricselection" selectionopts "github.com/hyperledger/fabric-sdk-go/pkg/client/common/selection/options" "github.com/hyperledger/fabric-sdk-go/pkg/common/options" @@ -27,7 +28,6 @@ import ( "github.com/hyperledger/fabric-sdk-go/pkg/fabsdk/provider/chpvdr" "github.com/hyperledger/fabric-sdk-go/test/integration" "github.com/hyperledger/fabric-sdk-go/third_party/github.com/hyperledger/fabric/common/cauthdsl" - cb "github.com/hyperledger/fabric-protos-go/common" grpcCodes "google.golang.org/grpc/codes" ) @@ -345,19 +345,19 @@ func expecting(groups ...[]string) [][]string { return groups } -func newCollectionConfig(colName, policy string, reqPeerCount, maxPeerCount int32, blockToLive uint64) (*cb.CollectionConfig, error) { +func newCollectionConfig(colName, policy string, reqPeerCount, maxPeerCount int32, blockToLive uint64) (*pb.CollectionConfig, error) { p, err := cauthdsl.FromString(policy) if err != nil { return nil, err } - cpc := &cb.CollectionPolicyConfig{ - Payload: &cb.CollectionPolicyConfig_SignaturePolicy{ + cpc := &pb.CollectionPolicyConfig{ + Payload: &pb.CollectionPolicyConfig_SignaturePolicy{ SignaturePolicy: p, }, } - return &cb.CollectionConfig{ - Payload: &cb.CollectionConfig_StaticCollectionConfig{ - StaticCollectionConfig: &cb.StaticCollectionConfig{ + return &pb.CollectionConfig{ + Payload: &pb.CollectionConfig_StaticCollectionConfig{ + StaticCollectionConfig: &pb.StaticCollectionConfig{ Name: colName, MemberOrgsPolicy: cpc, RequiredPeerCount: reqPeerCount, diff --git a/test/integration/pkg/client/resmgmt/resmgmt_queries_pvt_test.go b/test/integration/pkg/client/resmgmt/resmgmt_queries_pvt_test.go index 693c0a339d..5ad42e7937 100644 --- a/test/integration/pkg/client/resmgmt/resmgmt_queries_pvt_test.go +++ b/test/integration/pkg/client/resmgmt/resmgmt_queries_pvt_test.go @@ -10,11 +10,11 @@ import ( "reflect" "testing" + pb "github.com/hyperledger/fabric-protos-go/peer" "github.com/hyperledger/fabric-sdk-go/pkg/client/resmgmt" "github.com/hyperledger/fabric-sdk-go/pkg/fabsdk" "github.com/hyperledger/fabric-sdk-go/test/integration" "github.com/hyperledger/fabric-sdk-go/third_party/github.com/hyperledger/fabric/common/cauthdsl" - cb "github.com/hyperledger/fabric-protos-go/common" "github.com/stretchr/testify/require" ) @@ -58,14 +58,14 @@ func TestQueryCollectionsConfig(t *testing.T) { conf := resp.Config[0] switch cconf := conf.Payload.(type) { - case *cb.CollectionConfig_StaticCollectionConfig: + case *pb.CollectionConfig_StaticCollectionConfig: checkStaticCollectionConfig(t, cconf.StaticCollectionConfig) default: t.Fatalf("The CollectionConfig.Payload's type is incorrect, expected `CollectionConfig_StaticCollectionConfig`, got %+v", reflect.TypeOf(conf.Payload)) } } -func checkStaticCollectionConfig(t *testing.T, collConf *cb.StaticCollectionConfig) { +func checkStaticCollectionConfig(t *testing.T, collConf *pb.StaticCollectionConfig) { if collConf.Name != collCfgName { t.Fatalf("CollectionConfig'name is incorrect, expected collection1, got %s", collConf.Name) } @@ -83,19 +83,19 @@ func checkStaticCollectionConfig(t *testing.T, collConf *cb.StaticCollectionConf } } -func newCollectionConfig(colName, policy string, reqPeerCount, maxPeerCount int32, blockToLive uint64) (*cb.CollectionConfig, error) { +func newCollectionConfig(colName, policy string, reqPeerCount, maxPeerCount int32, blockToLive uint64) (*pb.CollectionConfig, error) { p, err := cauthdsl.FromString(policy) if err != nil { return nil, err } - cpc := &cb.CollectionPolicyConfig{ - Payload: &cb.CollectionPolicyConfig_SignaturePolicy{ + cpc := &pb.CollectionPolicyConfig{ + Payload: &pb.CollectionPolicyConfig_SignaturePolicy{ SignaturePolicy: p, }, } - return &cb.CollectionConfig{ - Payload: &cb.CollectionConfig_StaticCollectionConfig{ - StaticCollectionConfig: &cb.StaticCollectionConfig{ + return &pb.CollectionConfig{ + Payload: &pb.CollectionConfig_StaticCollectionConfig{ + StaticCollectionConfig: &pb.StaticCollectionConfig{ Name: colName, MemberOrgsPolicy: cpc, RequiredPeerCount: reqPeerCount, diff --git a/test/integration/prepare.go b/test/integration/prepare.go index 4c58bf44e3..efd612900e 100644 --- a/test/integration/prepare.go +++ b/test/integration/prepare.go @@ -10,7 +10,7 @@ import ( "fmt" "time" - cb "github.com/hyperledger/fabric-protos-go/common" + pb "github.com/hyperledger/fabric-protos-go/peer" "github.com/hyperledger/fabric-sdk-go/pkg/client/channel" "github.com/hyperledger/fabric-sdk-go/pkg/client/resmgmt" "github.com/hyperledger/fabric-sdk-go/pkg/common/errors/retry" @@ -139,19 +139,19 @@ func InstallExamplePvtChaincode(orgs []*OrgContext, ccID string) error { } // InstantiateExampleChaincode instantiates the example CC on the given channel -func InstantiateExampleChaincode(orgs []*OrgContext, channelID, ccID, ccPolicy string, collConfigs ...*cb.CollectionConfig) error { +func InstantiateExampleChaincode(orgs []*OrgContext, channelID, ccID, ccPolicy string, collConfigs ...*pb.CollectionConfig) error { _, err := InstantiateChaincode(orgs[0].ResMgmt, channelID, ccID, exampleCCPath, exampleCCVersion, ccPolicy, ExampleCCInitArgs(), collConfigs...) return err } // InstantiateExamplePvtChaincode instantiates the example pvt CC on the given channel -func InstantiateExamplePvtChaincode(orgs []*OrgContext, channelID, ccID, ccPolicy string, collConfigs ...*cb.CollectionConfig) error { +func InstantiateExamplePvtChaincode(orgs []*OrgContext, channelID, ccID, ccPolicy string, collConfigs ...*pb.CollectionConfig) error { _, err := InstantiateChaincode(orgs[0].ResMgmt, channelID, ccID, examplePvtCCPath, examplePvtCCVersion, ccPolicy, ExampleCCInitArgs(), collConfigs...) return err } // UpgradeExamplePvtChaincode upgrades the instantiated example pvt CC on the given channel -func UpgradeExamplePvtChaincode(orgs []*OrgContext, channelID, ccID, ccPolicy string, collConfigs ...*cb.CollectionConfig) error { +func UpgradeExamplePvtChaincode(orgs []*OrgContext, channelID, ccID, ccPolicy string, collConfigs ...*pb.CollectionConfig) error { // first install the CC with the upgraded cc version ccPkg, err := packager.NewCCPackage(examplePvtCCPath, GetDeployPath()) if err != nil { diff --git a/test/performance/go.mod b/test/performance/go.mod index 8aebfa6b1f..5e6a19e6a7 100644 --- a/test/performance/go.mod +++ b/test/performance/go.mod @@ -8,9 +8,8 @@ replace github.com/hyperledger/fabric-sdk-go => ../../ require ( github.com/golang/protobuf v1.3.2 - github.com/hyperledger/fabric-protos-go v0.0.0-20190823190507-26c33c998676 + github.com/hyperledger/fabric-protos-go v0.0.0-20191121202242-f5500d5e3e85 github.com/hyperledger/fabric-sdk-go v0.0.0-00010101000000-000000000000 - github.com/hyperledger/fabric-sdk-go/test/integration v0.0.0-20190831190312-1fab350867c4 // indirect github.com/pkg/errors v0.8.1 github.com/stretchr/testify v1.3.0 golang.org/x/net v0.0.0-20190311183353-d8887717615a diff --git a/test/performance/go.sum b/test/performance/go.sum index aa92b88806..d528f2c45b 100644 --- a/test/performance/go.sum +++ b/test/performance/go.sum @@ -41,12 +41,8 @@ github.com/hpcloud/tail v1.0.0 h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= github.com/hyperledger/fabric-lib-go v1.0.0 h1:UL1w7c9LvHZUSkIvHTDGklxFv2kTeva1QI2emOVc324= github.com/hyperledger/fabric-lib-go v1.0.0/go.mod h1:H362nMlunurmHwkYqR5uHL2UDWbQdbfz74n8kbCFsqc= -github.com/hyperledger/fabric-protos-go v0.0.0-20190821180310-6b6ac9042dfd h1:z0IbaMd4Ry2Cmmxujzy4UDgCUsT/0dOqqoGtOcvDw9Q= -github.com/hyperledger/fabric-protos-go v0.0.0-20190821180310-6b6ac9042dfd/go.mod h1:xVYTjK4DtZRBxZ2D9aE4y6AbLaPwue2o/criQyQbVD0= -github.com/hyperledger/fabric-protos-go v0.0.0-20190823190507-26c33c998676 h1:35/AU/6kOZgrblvSjglQ6yoz3opCKTpfoMjQygtCD/U= -github.com/hyperledger/fabric-protos-go v0.0.0-20190823190507-26c33c998676/go.mod h1:xVYTjK4DtZRBxZ2D9aE4y6AbLaPwue2o/criQyQbVD0= -github.com/hyperledger/fabric-sdk-go/test/integration v0.0.0-20190831190312-1fab350867c4 h1:wkJyYfRQH10wqtUubzIBURQoZ+MpjbObmWEexAcwCQE= -github.com/hyperledger/fabric-sdk-go/test/integration v0.0.0-20190831190312-1fab350867c4/go.mod h1:sccEHC5QwAXO4PAJwHSmfqfoFwGAX5s/GKzqGWyxFbM= +github.com/hyperledger/fabric-protos-go v0.0.0-20191121202242-f5500d5e3e85 h1:bNgEcCg5NVRWs/T+VUEfhgh5Olx/N4VB+0+ybW+oSuA= +github.com/hyperledger/fabric-protos-go v0.0.0-20191121202242-f5500d5e3e85/go.mod h1:xVYTjK4DtZRBxZ2D9aE4y6AbLaPwue2o/criQyQbVD0= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515 h1:T+h1c/A9Gawja4Y9mFVWj2vyii2bbUNDw3kt9VxK2EY= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI=