Skip to content

Commit 94ca92e

Browse files
committed
[FAB-9021] Fix compilation issue in bddtests
Change-Id: I94bd7a06791a85321143c9bdb34b3ebca70b66a2 Signed-off-by: Matthew Sykes <sykesmat@us.ibm.com>
1 parent a8d0253 commit 94ca92e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bddtests/conn.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727
func NewGrpcClient(peerAddress string) (*grpc.ClientConn, error) {
2828
var tmpConn *grpc.ClientConn
2929
var err error
30-
tmpConn, err = comm.NewClientConnectionWithAddress(peerAddress, true, false, nil)
30+
tmpConn, err = comm.NewClientConnectionWithAddress(peerAddress, true, false, nil, nil)
3131
if err != nil {
3232
fmt.Printf("error connection to server at host:port = %s\n", peerAddress)
3333
}

0 commit comments

Comments
 (0)