Skip to content

Commit 6ebc808

Browse files
committed
[FAB-8923] Fix compilation of examples/ccchecker
Change-Id: I1abd6098c949c908034447fb11c17f17eff6dc95 Signed-off-by: Will Lahti <wtlahti@us.ibm.com> Signed-off-by: Matthew Sykes <sykesmat@us.ibm.com>
1 parent 6fd18a2 commit 6ebc808

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/ccchecker/ccchecker.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ func CCCheckerInit() {
9292
//CCCheckerRun main loops that will run the tests and cleanup
9393
func CCCheckerRun(orderingEndpoint string, report bool, verbose bool) error {
9494
//connect with Broadcast client
95-
bc, err := common.GetBroadcastClient(orderingEndpoint, false, "")
95+
bc, err := common.GetBroadcastClient()
9696
if err != nil {
9797
return err
9898
}

examples/ccchecker/init.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ func initMSP(mainFlags *pflag.FlagSet) {
8282
mainFlags.StringVarP(&mspMgrConfigDir, "mspcfgdir", "m", defaultMspDir, "Path to MSP dir")
8383
mainFlags.StringVarP(&mspID, "mspid", "i", "DEFAULT", "MSP ID")
8484

85-
err = common.InitCrypto(mspMgrConfigDir, mspID)
85+
err = common.InitCrypto(mspMgrConfigDir, mspID, "bccsp")
8686
if err != nil {
8787
panic(err.Error())
8888
}

0 commit comments

Comments
 (0)