(rpcAddress string)
| 286 | } |
| 287 | |
| 288 | func (d *RPCFactory) CreateMatchingGRPCConnection(rpcAddress string) *grpc.ClientConn { |
| 289 | return d.createInternodeGRPCConnection(rpcAddress, primitives.MatchingService) |
| 290 | } |
| 291 | |
| 292 | func (d *RPCFactory) dial(hostName string, tlsClientConfig *tls.Config, dialOptions ...grpc.DialOption) *grpc.ClientConn { |
| 293 | dialOptions = append(d.commonDialOptions, dialOptions...) |
nothing calls this directly
no test coverage detected