Skip to content

Commit

Permalink
Merge pull request #28 from rollkit/fix
Browse files Browse the repository at this point in the history
fix: replace grpc Dial with NewClient
  • Loading branch information
gupadhyaya authored Aug 14, 2024
2 parents 2ec636b + 8021b99 commit d498cca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ func startGrpcServer(
}

// if gRPC is enabled, configure gRPC client for gRPC gateway
grpcClient, err := grpc.Dial(
grpcClient, err := grpc.NewClient(
config.Address,
grpc.WithTransportCredentials(insecure.NewCredentials()),
grpc.WithDefaultCallOptions(
Expand Down

0 comments on commit d498cca

Please sign in to comment.