From a47bf65e1957523c6e5c32b724df8d789c201e3f Mon Sep 17 00:00:00 2001 From: Jason Yellick Date: Tue, 31 Oct 2017 17:00:36 -0400 Subject: [PATCH] [FAB-6845] Fix broken master A merge created a CI failure, as the new version dependencies in the MSP code conflict with the idemix tests, this CR fixes it. Change-Id: I958f4f4c37a44bc9dbc60b939e7a0236852ae1ae Signed-off-by: Jason Yellick --- common/tools/idemixgen/idemixca/idemixca_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/tools/idemixgen/idemixca/idemixca_test.go b/common/tools/idemixgen/idemixca/idemixca_test.go index 7613391331e..a292407d203 100644 --- a/common/tools/idemixgen/idemixca/idemixca_test.go +++ b/common/tools/idemixgen/idemixca/idemixca_test.go @@ -93,7 +93,7 @@ func writeSignerToFile(signerBytes []byte) error { // with the generated config bytes func setupMSP() error { // setup an idemix msp from the test directory - msp, err := m.New(&m.IdemixNewOpts{NewBaseOpts: m.NewBaseOpts{Version: m.MSPv1_0}}) + msp, err := m.New(&m.IdemixNewOpts{NewBaseOpts: m.NewBaseOpts{Version: m.MSPv1_1}}) if err != nil { return errors.Wrap(err, "Getting MSP failed") }