Skip to content

Commit

Permalink
[FAB-9021] Fix compilation issue in bddtests
Browse files Browse the repository at this point in the history
Change-Id: I94bd7a06791a85321143c9bdb34b3ebca70b66a2
Signed-off-by: Matthew Sykes <[email protected]>
  • Loading branch information
sykesm committed Mar 21, 2018
1 parent a8d0253 commit 94ca92e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bddtests/conn.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import (
func NewGrpcClient(peerAddress string) (*grpc.ClientConn, error) {
var tmpConn *grpc.ClientConn
var err error
tmpConn, err = comm.NewClientConnectionWithAddress(peerAddress, true, false, nil)
tmpConn, err = comm.NewClientConnectionWithAddress(peerAddress, true, false, nil, nil)
if err != nil {
fmt.Printf("error connection to server at host:port = %s\n", peerAddress)
}
Expand Down

0 comments on commit 94ca92e

Please sign in to comment.